Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
gitweb: make repeated calls to git_get_project_owner() bearable
[gitweb.git]
/
diff-delta.c
diff --git
a/diff-delta.c
b/diff-delta.c
index 17757d2af9576f4a340c5dbd62d30b597140ddba..faf96e47130e3a2af26f55fc1173874f078617fc 100644
(file)
--- a/
diff-delta.c
+++ b/
diff-delta.c
@@
-388,7
+388,7
@@
create_delta(const struct delta_index *index,
outsize = max_size + MAX_OP_SIZE + 1;
if (max_size && outpos > max_size)
break;
- out =
x
realloc(out, outsize);
+ out = realloc(out, outsize);
if (!out) {
free(tmp);
return NULL;