summaryrefslogtreecommitdiff
path: root/src/pack-objects.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pack-objects.c')
-rw-r--r--src/pack-objects.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pack-objects.c b/src/pack-objects.c
index cd0deb29a..288077078 100644
--- a/src/pack-objects.c
+++ b/src/pack-objects.c
@@ -504,10 +504,8 @@ static git_pobject **compute_write_order(git_packbuilder *pb)
unsigned int i, wo_end, last_untagged;
git_pobject **wo;
- if ((wo = git__mallocarray(pb->nr_objects, sizeof(*wo))) == NULL) {
- giterr_set_oom();
+ if ((wo = git__mallocarray(pb->nr_objects, sizeof(*wo))) == NULL)
return NULL;
- }
for (i = 0; i < pb->nr_objects; i++) {
git_pobject *po = pb->object_list + i;