From: Junio C Hamano Date: Wed, 15 Dec 2010 19:32:57 +0000 (-0800) Subject: Git 1.6.6.3 X-Git-Tag: v1.6.6.3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=59a540fa3ce7e4483cbd9f3d7c552b009fc19c47;p=git.git Git 1.6.6.3 Signed-off-by: Junio C Hamano --- abf411e28d9df669b0e690578a1eb95c0bd29847 diff --cc Documentation/RelNotes/1.6.6.3.txt index 000000000,000000000..11483acae new file mode 100644 --- /dev/null +++ b/Documentation/RelNotes/1.6.6.3.txt @@@ -1,0 -1,0 +1,23 @@@ ++Git v1.6.6.3 Release Notes ++========================== ++ ++Fixes since v1.6.6.2 ++-------------------- ++ ++ * An overlong line after ".gitdir: " in a git file caused out of bounds ++ access to an array on the stack. ++ ++ * "git bisect $path" did not correctly diagnose an error when given a ++ non-existent path. ++ ++ * "git blame -L $start,$end" segfaulted when too large $start was given. ++ ++ * "git imap-send" did not write draft box with CRLF line endings per RFC. ++ ++ * "git rev-parse --parseopt --stop-at-non-option" did not stop at non option ++ when --keep-dashdash was in effect. ++ ++ * "gitweb" can sometimes be tricked into parrotting a filename argument ++ given in a request without properly quoting. ++ ++Other minor fixes and documentation updates are included. diff --cc GIT-VERSION-GEN index 081be51a9,1d79f4829..7d16b0138 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@@ -1,7 -1,7 +1,7 @@@ #!/bin/sh GVF=GIT-VERSION-FILE - DEF_VER=v1.6.6.2 -DEF_VER=v1.6.5.9 ++DEF_VER=v1.6.6.3 LF=' ' diff --cc RelNotes index 692968f17,3c23099a3..3dad2389f --- a/RelNotes +++ b/RelNotes @@@ -1,1 -1,1 +1,1 @@@ - Documentation/RelNotes-1.6.6.2.txt -Documentation/RelNotes/1.6.5.9.txt ++Documentation/RelNotes/1.6.6.3.txt diff --cc gitweb/gitweb.perl index 7e477af95,620b5bdbb..0fe853932 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@@ -3327,18 -3228,6 +3334,18 @@@ sub git_footer_html insert_file($site_footer); } - print qq!\n!; ++ print qq!\n!; + if ($action eq 'blame_incremental') { + print qq!\n!; + } elsif (gitweb_check_feature('javascript-actions')) { + print qq!\n!; + } + print "\n" . ""; }