Commit a1f69452a22689ca2eede7669e79a3e7ab849cdd

Edward Thomson 2013-08-08T12:36:11

git_strndup fix when OOM

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/util.h b/src/util.h
index ed96247..a784390 100644
--- a/src/util.h
+++ b/src/util.h
@@ -55,6 +55,9 @@ GIT_INLINE(char *) git__strndup(const char *str, size_t n)
 
 	ptr = (char*)git__malloc(length + 1);
 
+	if (!ptr)
+		return NULL;
+
 	if (length)
 		memcpy(ptr, str, length);