summaryrefslogtreecommitdiff
path: root/av.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-05-30 23:56:14 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-30 23:56:14 +0000
commit08b3c1441081420b538fa2b70f92a7e1567828da (patch)
tree0865e36d778d81c5329cbbace339ef7bc601980a /av.c
parent46f692a15995f5ef7ecec98b49b38e45315bc100 (diff)
downloadperl-08b3c1441081420b538fa2b70f92a7e1567828da.tar.gz
More -Wall sweeping.
p4raw-id: //depot/perl@10338
Diffstat (limited to 'av.c')
-rw-r--r--av.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/av.c b/av.c
index 4872f94efa..456a21e02d 100644
--- a/av.c
+++ b/av.c
@@ -130,7 +130,9 @@ Perl_av_extend(pTHX_ AV *av, I32 key)
Safefree(AvALLOC(av));
AvALLOC(av) = ary;
#endif
+#if defined(MYMALLOC) && !defined(LEAKTEST)
resized:
+#endif
ary = AvALLOC(av) + AvMAX(av) + 1;
tmp = newmax - AvMAX(av);
if (av == PL_curstack) { /* Oops, grew stack (via av_store()?) */