From 67e4baf82679e6362d950f6a80a9a261cf266555 Mon Sep 17 00:00:00 2001 From: Alex Riesen Date: Mon, 22 Jan 2007 15:58:03 +0100 Subject: Cleanup uninitialized value in chomp which happens if you use ActiveState Perl and a pipe workaround specially for it. Signed-off-by: Alex Riesen Signed-off-by: Junio C Hamano --- perl/Git.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl') diff --git a/perl/Git.pm b/perl/Git.pm index 2f6b59a43b..c1729bafd2 100644 --- a/perl/Git.pm +++ b/perl/Git.pm @@ -275,7 +275,7 @@ sub command { } else { my @lines = <$fh>; - chomp @lines; + defined and chomp for @lines; try { _cmd_close($fh, $ctx); } catch Git::Error::Command with { -- cgit v1.2.3