X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/581a0c2a5428917d42cbfb2b4673a2d2ebceb7d0..9af580d8f6e31ccd68307a728a710c525e4133ab:/shared.c?ds=sidebyside diff --git a/shared.c b/shared.c index 83ded44..8b3a045 100644 --- a/shared.c +++ b/shared.c @@ -280,6 +280,10 @@ int cgit_diff_files(const unsigned char *old_sha1, if ((file1.ptr && buffer_is_binary(file1.ptr, file1.size)) || (file2.ptr && buffer_is_binary(file2.ptr, file2.size))) { *binary = 1; + if (file1.size) + free(file1.ptr); + if (file2.size) + free(file2.ptr); return 0; } @@ -292,6 +296,10 @@ int cgit_diff_files(const unsigned char *old_sha1, emit_cb.outf = filediff_cb; emit_cb.priv = fn; xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb); + if (file1.size) + free(file1.ptr); + if (file2.size) + free(file2.ptr); return 0; }