Skip to content

Commit da774e8

Browse files
committed
Merge branch 'gfi-maint' into maint
* gfi-maint: Properly handle '0' filenames in import-tars
2 parents 1cc202b + d966e6a commit da774e8

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)