Skip to content

Commit a9d9a1b

Browse files
author
Junio C Hamano
committed
Merge branch 'maint' of git://repo.or.cz/git/fastimport into maint
* 'maint' of git://repo.or.cz/git/fastimport: Fix documentation of tag in git-fast-import.txt Properly handle '0' filenames in import-tars
2 parents b722b95 + 419ca50 commit a9d9a1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/fast-import/import-tars.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
$prefix) = unpack 'Z100 Z8 Z8 Z8 Z12 Z12
5252
Z8 Z1 Z100 Z6
5353
Z2 Z32 Z32 Z8 Z8 Z*', $_;
54-
last unless $name;
54+
last unless length($name);
5555
if ($name eq '././@LongLink') {
5656
# GNU tar extension
5757
if (read(I, $_, 512) != 512) {

0 commit comments

Comments
 (0)