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:

committed by
Junio C Hamano

parent
444f29ce42
commit
3115fe9821
@ -259,7 +259,8 @@ if (@canstatusfiles) {
|
|||||||
if $file =~ /^no file /
|
if $file =~ /^no file /
|
||||||
&& $status eq 'Up-to-date';
|
&& $status eq 'Up-to-date';
|
||||||
|
|
||||||
$cvsstat{$fullname{$file}} = $status;
|
$cvsstat{$fullname{$file}} = $status
|
||||||
|
if defined $fullname{$file};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user