summaryrefslogtreecommitdiff
path: root/t/op/vec.t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-18 04:23:12 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-18 04:23:12 +0000
commit02270b4e1187bc8d0def222ae3fb78581e1dc745 (patch)
tree3af6b9b70ffcbab12320fd78f064ea03a0b34a6c /t/op/vec.t
parent5c7a8c7888175e16e13670318410610dcb21c26f (diff)
downloadperl-02270b4e1187bc8d0def222ae3fb78581e1dc745.tar.gz
fix lvalue leaks stemming from failure to free LvTARG(sv)
p4raw-id: //depot/perl@1528
Diffstat (limited to 't/op/vec.t')
-rwxr-xr-xt/op/vec.t2
1 files changed, 0 insertions, 2 deletions
diff --git a/t/op/vec.t b/t/op/vec.t
index 5ae224703a..71171447d6 100755
--- a/t/op/vec.t
+++ b/t/op/vec.t
@@ -4,8 +4,6 @@
print "1..15\n";
-$ENV{PERL_DESTRUCT_LEVEL} = 0; # XXX known to leaks scalars
-
print vec($foo,0,1) == 0 ? "ok 1\n" : "not ok 1\n";
print length($foo) == 0 ? "ok 2\n" : "not ok 2\n";
vec($foo,0,1) = 1;