Skip to content

Commit ffcc952

Browse files
author
Junio C Hamano
committed
Merge branch 'maint'
* maint: Fix documentation of tag in git-fast-import.txt Properly handle '0' filenames in import-tars
2 parents 63fcbe0 + a9d9a1b commit ffcc952

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)