Unverified Commit 9293e165 by Edward Thomson Committed by GitHub

Merge pull request #5494 from kevinjswinton/master

Fix binary diff showing /dev/null
parents e8ab3db9 e72ade87
...@@ -209,9 +209,7 @@ static int patch_generated_load(git_patch_generated *patch, git_patch_generated_ ...@@ -209,9 +209,7 @@ static int patch_generated_load(git_patch_generated *patch, git_patch_generated_
if ((error = git_diff_file_content__load( if ((error = git_diff_file_content__load(
&patch->ofile, &patch->base.diff_opts)) < 0 || &patch->ofile, &patch->base.diff_opts)) < 0 ||
should_skip_binary(patch, patch->ofile.file)) (error = git_diff_file_content__load(
goto cleanup;
if ((error = git_diff_file_content__load(
&patch->nfile, &patch->base.diff_opts)) < 0 || &patch->nfile, &patch->base.diff_opts)) < 0 ||
should_skip_binary(patch, patch->nfile.file)) should_skip_binary(patch, patch->nfile.file))
goto cleanup; goto cleanup;
......
...@@ -487,7 +487,7 @@ void test_diff_format_email__binary(void) ...@@ -487,7 +487,7 @@ void test_diff_format_email__binary(void)
"Subject: [PATCH] Modified binary file\n" \ "Subject: [PATCH] Modified binary file\n" \
"\n" \ "\n" \
"---\n" \ "---\n" \
" binary.bin | Bin 3 -> 0 bytes\n" \ " binary.bin | Bin 3 -> 5 bytes\n" \
" 1 file changed, 0 insertions(+), 0 deletions(-)\n" \ " 1 file changed, 0 insertions(+), 0 deletions(-)\n" \
"\n" \ "\n" \
"diff --git a/binary.bin b/binary.bin\n" \ "diff --git a/binary.bin b/binary.bin\n" \
...@@ -496,7 +496,6 @@ void test_diff_format_email__binary(void) ...@@ -496,7 +496,6 @@ void test_diff_format_email__binary(void)
"--\n" \ "--\n" \
"libgit2 " LIBGIT2_VERSION "\n" \ "libgit2 " LIBGIT2_VERSION "\n" \
"\n"; "\n";
/* TODO: Actually 0 bytes here should be 5!. Seems like we don't load the new content for binary files? */
opts.summary = "Modified binary file"; opts.summary = "Modified binary file";
......
...@@ -298,9 +298,8 @@ void test_diff_stats__binary(void) ...@@ -298,9 +298,8 @@ void test_diff_stats__binary(void)
{ {
git_buf buf = GIT_BUF_INIT; git_buf buf = GIT_BUF_INIT;
const char *stat = const char *stat =
" binary.bin | Bin 3 -> 0 bytes\n" " binary.bin | Bin 3 -> 5 bytes\n"
" 1 file changed, 0 insertions(+), 0 deletions(-)\n"; " 1 file changed, 0 insertions(+), 0 deletions(-)\n";
/* TODO: Actually 0 bytes here should be 5!. Seems like we don't load the new content for binary files? */
diff_stats_from_commit_oid( diff_stats_from_commit_oid(
&_stats, "8d7523f6fcb2404257889abe0d96f093d9f524f9", false); &_stats, "8d7523f6fcb2404257889abe0d96f093d9f524f9", false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment