summaryrefslogtreecommitdiff
path: root/src/allocators/stdalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/allocators/stdalloc.c')
-rw-r--r--src/allocators/stdalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/stdalloc.c b/src/allocators/stdalloc.c
index 7215468b6..2b36d9f3d 100644
--- a/src/allocators/stdalloc.c
+++ b/src/allocators/stdalloc.c
@@ -35,7 +35,7 @@ static void *stdalloc__calloc(size_t nelem, size_t elsize, const char *file, int
GIT_UNUSED(line);
#ifdef GIT_DEBUG_STRICT_ALLOC
- if (!elsize)
+ if (!elsize || !nelem)
return NULL;
#endif