Skip to content

Commit

Permalink
gitweb: There can be empty patches (in git_patchset_body)
Browse files Browse the repository at this point in the history
We now do not skip over empty patches in git_patchset_body
(where empty means that they consist only of git diff header,
and of extended diff header), so uncomment branch of code dealing
with empty patches (patches which do not have even two-line
from/to header)

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Jakub Narebski authored and Junio C Hamano committed Jan 3, 2007
1 parent 6e72cf4 commit 1ebb948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitweb/gitweb.perl
Original file line number Diff line number Diff line change
Expand Up @@ -2527,7 +2527,7 @@ sub git_patchset_body {
print "<div class=\"diff from_file\">$patch_line</div>\n";

$patch_line = <$fd>;
#last PATCH unless $patch_line;
last PATCH unless $patch_line;
chomp $patch_line;

#assert($patch_line =~ m/^+++/) if DEBUG;
Expand Down

0 comments on commit 1ebb948

Please sign in to comment.