projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
fbac1b8
)
added tainting for getcwd for Win32
Nikola Knezevic [Tue, 18 Sep 2001 18:06:44 +0000 (20:06 +0200)]
Message-ID: <
11018348611
.20010918180644@tesla.rcub.bg.ac.yu>
p4raw-id: //depot/perl@12078
win32/win32.c
patch
|
blob
|
blame
|
history
diff --git
a/win32/win32.c
b/win32/win32.c
index
905a987
..
eacb248
100644
(file)
--- a/
win32/win32.c
+++ b/
win32/win32.c
@@
-3612,6
+3612,10
@@
XS(w32_GetCwd)
sv_setpv(sv, ptr);
PerlEnv_free_childdir(ptr);
+#ifndef INCOMPLETE_TAINTS
+ SvTAINTED_on(sv);
+#endif
+
EXTEND(SP,1);
SvPOK_on(sv);
ST(0) = sv;