summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2006-03-26 17:53:56 +0300
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-03-29 08:55:21 +0000
commit7e337ee0bc836d3147f3b2579c7e35127637e377 (patch)
treec29b93e66e8deb1fbf7132063cb81a86f7671650 /pp_ctl.c
parent5247441a32fa99437809b483eb208756c7ad2401 (diff)
downloadperl-7e337ee0bc836d3147f3b2579c7e35127637e377.tar.gz
re-[PATCH] Re: [PATCH] Poison now in two different flavours!
Message-ID: <442680D4.3000809@gmail.com> p4raw-id: //depot/perl@27626
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index c0e3a0965d..5621db6180 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -380,7 +380,7 @@ Perl_rxres_free(pTHX_ void **rsp)
void *tmp = INT2PTR(char*,*p);
Safefree(tmp);
if (*p)
- Poison(*p, 1, sizeof(*p));
+ PoisonFree(*p, 1, sizeof(*p));
#else
Safefree(INT2PTR(char*,*p));
#endif