From 7cb27275b7c6316bdc9b58fd98e3a55999f1094c Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Mon, 26 Jan 2009 09:50:06 +0000 Subject: protect parenthesis in setVarsInSh and drop dead code (#47298) --- NEWS | 4 ++++ lib/MDK/Common.pm.pl | 2 +- lib/MDK/Common/System.pm | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index d2bad49..73d6845 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +Version 1.2.15 - 26 January 2009, by Pascal Terjan + +- protect parenthesis in setVarsInSh and drop dead code (#47298) + Version 1.2.14 - 1 October 2008, by Pascal "Pixel" Rigaux - round_up(), round_down(): workaround "Illegal modulus zero" (#43165) diff --git a/lib/MDK/Common.pm.pl b/lib/MDK/Common.pm.pl index 3581430..6c54e4e 100644 --- a/lib/MDK/Common.pm.pl +++ b/lib/MDK/Common.pm.pl @@ -73,7 +73,7 @@ our @ISA = qw(Exporter); # perl_checker: RE-EXPORT-ALL our @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -our $VERSION = "1.2.14"; +our $VERSION = "1.2.15"; 1; EOF diff --git a/lib/MDK/Common/System.pm b/lib/MDK/Common/System.pm index b4f43c8..71b9bad 100644 --- a/lib/MDK/Common/System.pm +++ b/lib/MDK/Common/System.pm @@ -377,8 +377,7 @@ sub setVarsInShMode { if ($val =~ /["`\$]/) { $val =~ s/(')/\\$1/g; $val = qq('$val'); - } elsif ($val =~ /['|\s\\]/) { - $val =~ s/(["\\])/\\$1/g; + } elsif ($val =~ /[\(\)'|\s\\]/) { $val = qq("$val"); } "$_=$val\n"; -- cgit v1.2.1