summaryrefslogtreecommitdiff
path: root/av.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-14 08:50:06 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-14 08:50:06 +0000
commitf5a32c7f87cd929827e4ff3bd7c4afabda8d29d9 (patch)
treec5d25859ac674eded4de31c1ee0f3cdf681531dd /av.c
parente3663bad6e33b1f2ec45df9483f0907f7479b737 (diff)
downloadperl-f5a32c7f87cd929827e4ff3bd7c4afabda8d29d9.tar.gz
notes about running Purify
p4raw-id: //depot/perl@5079
Diffstat (limited to 'av.c')
-rw-r--r--av.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/av.c b/av.c
index 29afaff7ee..adc65496a1 100644
--- a/av.c
+++ b/av.c
@@ -104,7 +104,7 @@ Perl_av_extend(pTHX_ AV *av, I32 key)
IV itmp;
#endif
-#if defined(MYMALLOC) && !defined(PURIFY) && !defined(LEAKTEST)
+#if defined(MYMALLOC) && !defined(LEAKTEST)
newmax = malloced_size((void*)AvALLOC(av))/sizeof(SV*) - 1;
if (key <= newmax)