From a5cd7dc7eeaa740609638a420a70e258e131b7b2 Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Mon, 3 Oct 2011 01:37:32 +0200 Subject: [PATCH] Fixes: bug #34463: parallel -S .. --tag --onall ::: date uptime gives uninitialized value. --- src/parallel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parallel b/src/parallel index b4f96fc6..5ee1d367 100755 --- a/src/parallel +++ b/src/parallel @@ -59,7 +59,7 @@ if($::opt_skip_first_line) { <$fh>; } -my $command; +my $command = ""; if(@ARGV) { if($Global::quoting) { $command = shell_quote(@ARGV); @@ -496,7 +496,7 @@ sub get_options_from_array { sub parse_options { # Returns: N/A # Defaults: - $Global::version = 20111002; + $Global::version = 20111003; $Global::progname = 'parallel'; $Global::infinity = 2**31; $Global::debug = 0;