Skip to content

Commit

Permalink
Merge branch 'gfi-maint' into maint
Browse files Browse the repository at this point in the history
* gfi-maint:
  Properly handle '0' filenames in import-tars
  • Loading branch information
spearce committed May 10, 2007
2 parents 1cc202b + d966e6a commit da774e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/fast-import/import-tars.perl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
$prefix) = unpack 'Z100 Z8 Z8 Z8 Z12 Z12
Z8 Z1 Z100 Z6
Z2 Z32 Z32 Z8 Z8 Z*', $_;
last unless $name;
last unless length($name);
if ($name eq '././@LongLink') {
# GNU tar extension
if (read(I, $_, 512) != 512) {
Expand Down

0 comments on commit da774e8

Please sign in to comment.