diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-05-19 18:26:39 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-05-19 18:26:39 +0000 |
commit | a453040451be73589741d2ad8853174873ef7060 (patch) | |
tree | f9c97985509e74cc6fd9b10de2d52f986974012d /sv.c | |
parent | ae2c882d75cad4399a20b1c5f85f0bf3e0db1455 (diff) | |
download | perl-a453040451be73589741d2ad8853174873ef7060.tar.gz |
Integrate mailine
p4raw-id: //depot/perlio@16696
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |