aboutsummaryrefslogtreecommitdiffstats
path: root/shared.c
diff options
context:
space:
mode:
authorGravatar Lars Hjemli <hjemli@gmail.com>2010-04-08 07:50:20 (JST)
committerGravatar Lars Hjemli <hjemli@gmail.com>2010-04-08 07:50:20 (JST)
commit023d933121ca7352a069f3886caf6fbe958ba27d (patch)
treeacd2c755148eacf0c0b542fb8c143b480514f66e /shared.c
parentff3a3b4e2b7463bb8cb370bdda393e8b3526fcb9 (diff)
parentce761fde0772236a11b41270f9254c515f724ad5 (diff)
downloadcgit-023d933121ca7352a069f3886caf6fbe958ba27d.zip
cgit-023d933121ca7352a069f3886caf6fbe958ba27d.tar.gz
Merge branch 'stable'
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index 5f46793..83b71e6 100644
--- a/shared.c
+++ b/shared.c
@@ -279,6 +279,10 @@ int cgit_diff_files(const unsigned char *old_sha1,
279 if ((file1.ptr && buffer_is_binary(file1.ptr, file1.size)) || 279 if ((file1.ptr && buffer_is_binary(file1.ptr, file1.size)) ||
280 (file2.ptr && buffer_is_binary(file2.ptr, file2.size))) { 280 (file2.ptr && buffer_is_binary(file2.ptr, file2.size))) {
281 *binary = 1; 281 *binary = 1;
282 if (file1.size)
283 free(file1.ptr);
284 if (file2.size)
285 free(file2.ptr);
282 return 0; 286 return 0;
283 } 287 }
284 288
@@ -291,6 +295,10 @@ int cgit_diff_files(const unsigned char *old_sha1,
291 emit_cb.outf = filediff_cb; 295 emit_cb.outf = filediff_cb;
292 emit_cb.priv = fn; 296 emit_cb.priv = fn;
293 xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb); 297 xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb);
298 if (file1.size)
299 free(file1.ptr);
300 if (file2.size)
301 free(file2.ptr);
294 return 0; 302 return 0;
295} 303}
296 304