Update src/allocators/stdalloc.c Co-authored-by: lhchavez <lhchavez@lhchavez.com>
diff --git a/src/allocators/stdalloc.c b/src/allocators/stdalloc.c
index 7215468..2b36d9f 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