diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-13 01:25:07 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-13 01:25:07 +0000 |
commit | c70c8a0a59777ed7fb7075471185210bc2169b49 (patch) | |
tree | 86550314a4762842631adbbdf7c29d3bdc231c3f /av.c | |
parent | b338183147e566f942b72c505aee8119791478c2 (diff) | |
download | perl-c70c8a0a59777ed7fb7075471185210bc2169b49.tar.gz |
add a few more PURIFY guards
p4raw-id: //depot/perl@1460
Diffstat (limited to 'av.c')
-rw-r--r-- | av.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ av_extend(AV *av, I32 key) U32 bytes; #endif -#ifdef MYMALLOC +#if defined(MYMALLOC) && !defined(PURIFY) newmax = malloced_size((void*)AvALLOC(av))/sizeof(SV*) - 1; if (key <= newmax) |