summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-05-27 16:45:22 -0700
committerRussell Belfer <rb@github.com>2013-05-27 16:45:22 -0700
commit9007c53faecf51be7f166172682008d16f7d617a (patch)
tree8832573819986ca65f9d99ff66dd6a4b59d78195
parent8baca134cc21b5eef18e3d47d50ed55f633b57d1 (diff)
downloadlibgit2-9007c53faecf51be7f166172682008d16f7d617a.tar.gz
Fixing unwrapped calloc
-rw-r--r--src/delta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delta.c b/src/delta.c
index 3252dbf14..b3435ba87 100644
--- a/src/delta.c
+++ b/src/delta.c
@@ -168,7 +168,7 @@ git_delta_create_index(const void *buf, unsigned long bufsize)
memset(hash, 0, hsize * sizeof(*hash));
/* allocate an array to count hash entries */
- hash_count = calloc(hsize, sizeof(*hash_count));
+ hash_count = git__calloc(hsize, sizeof(*hash_count));
if (!hash_count) {
git__free(index);
return NULL;