Change 28591 by [EMAIL PROTECTED] on 2006/07/16 21:42:59
Check for taintedness of PERL5SHELL on Windows
(bug #39832)
Affected files ...
... //depot/perl/taint.c#51 edit
Differences ...
==== //depot/perl/taint.c#51 (text) ====
Index: perl/taint.c
--- perl/taint.c#50~26732~ 2006-01-08 11:53:11.000000000 -0800
+++ perl/taint.c 2006-07-16 14:42:59.000000000 -0700
@@ -82,6 +82,9 @@
"CDPATH", /* ksh dain bramage #1 */
"ENV", /* ksh dain bramage #2 */
"BASH_ENV", /* bash dain bramage -- I guess it's contagious */
+#ifdef WIN32
+ "PERL5SHELL", /* used for system() on Windows */
+#endif
NULL
};
End of Patch.