summaryrefslogtreecommitdiff
path: root/av.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2005-10-16 17:46:10 +0000
committerDave Mitchell <davem@fdisolutions.com>2005-10-16 17:46:10 +0000
commitb9b17cada456ce6b994dd57b6f9a29a372123e93 (patch)
tree9719f29218f84384ebc351c2d71c54695540e5e0 /av.c
parent41fc7aade40f9ae87187b2116dd995e4151c4367 (diff)
downloadperl-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.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/av.c b/av.c
index 2b28223aa3..f2afa82da8 100644
--- a/av.c
+++ b/av.c
@@ -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));
}
/*