summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2002-05-19 18:26:39 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2002-05-19 18:26:39 +0000
commita453040451be73589741d2ad8853174873ef7060 (patch)
treef9c97985509e74cc6fd9b10de2d52f986974012d /sv.c
parentae2c882d75cad4399a20b1c5f85f0bf3e0db1455 (diff)
downloadperl-a453040451be73589741d2ad8853174873ef7060.tar.gz
Integrate mailine
p4raw-id: //depot/perlio@16696
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index ff53fae0a2..ed40f6840f 100644
--- a/sv.c
+++ b/sv.c
@@ -9711,7 +9711,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PERL_SET_THX(my_perl);
# ifdef DEBUGGING
- memset(my_perl, 0xab, sizeof(PerlInterpreter));
+ Poison(my_perl, 1, PerlInterpreter);
PL_markstack = 0;
PL_scopestack = 0;
PL_savestack = 0;
@@ -9742,7 +9742,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
# ifdef DEBUGGING
- memset(my_perl, 0xab, sizeof(PerlInterpreter));
+ Poison(my_perl, 1, PerlInterpreter);
PL_markstack = 0;
PL_scopestack = 0;
PL_savestack = 0;