diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-10-16 17:46:10 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-10-16 17:46:10 +0000 |
commit | b9b17cada456ce6b994dd57b6f9a29a372123e93 (patch) | |
tree | 9719f29218f84384ebc351c2d71c54695540e5e0 /av.c | |
parent | 41fc7aade40f9ae87187b2116dd995e4151c4367 (diff) | |
download | perl-b9b17cada456ce6b994dd57b6f9a29a372123e93.tar.gz |
an assert in av_undef was leaking memory
p4raw-id: //depot/perl@25771
Diffstat (limited to 'av.c')
-rw-r--r-- | av.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -502,8 +502,6 @@ Perl_av_undef(pTHX_ register AV *av) AvALLOC(av) = 0; SvPV_set(av, (char*)0); AvMAX(av) = AvFILLp(av) = -1; - /* It's in magic - it must already be gone. */ - assert (!AvARYLEN(av)); } /* |