1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-10-28 04:49:43 +01:00

Avoid generating a warning if $fullname{$file} is undefined

Signed-off-by: Nick Woolley <git.wu-lee@noodlefactory.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Nick Woolley 2009-07-06 14:33:45 +01:00 committed by Junio C Hamano
parent 444f29ce42
commit 3115fe9821

View file

@ -259,7 +259,8 @@
if $file =~ /^no file /
&& $status eq 'Up-to-date';
$cvsstat{$fullname{$file}} = $status;
$cvsstat{$fullname{$file}} = $status
if defined $fullname{$file};
}
}
}