projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
444f29c
)
Avoid generating a warning if $fullname{$file} is undefined
author
Nick Woolley
<nick@noodlefactory.co.uk>
Mon, 6 Jul 2009 13:33:45 +0000
(14:33 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 6 Jul 2009 16:36:43 +0000
(09:36 -0700)
Signed-off-by: Nick Woolley <git.wu-lee@noodlefactory.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-cvsexportcommit.perl
patch
|
blob
|
history
diff --git
a/git-cvsexportcommit.perl
b/git-cvsexportcommit.perl
index d50946872a73d4ddb4bce0e6101ae144395613a4..59b672213bfc36f95db089f0e13bafc1c2f2ed71 100755
(executable)
--- a/
git-cvsexportcommit.perl
+++ b/
git-cvsexportcommit.perl
@@
-259,7
+259,8
@@
if (@canstatusfiles) {
if $file =~ /^no file /
&& $status eq 'Up-to-date';
- $cvsstat{$fullname{$file}} = $status;
+ $cvsstat{$fullname{$file}} = $status
+ if defined $fullname{$file};
}
}
}