summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorEric Brine <ikegami@adaelis.com>2011-02-21 02:37:27 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-05-18 14:55:04 -0700
commitf7010667d1407014dba2e28da79d92e9c090fd09 (patch)
tree4b887c6d3c20fd34014d271f320b9e5c30f767a7 /pp_ctl.c
parentfad0c7579d7ed7747af3ccc32256f5f00b40600f (diff)
downloadperl-f7010667d1407014dba2e28da79d92e9c090fd09.tar.gz
given wasn't calling set magic [RT#84526]
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index a30e16d0de..fe36489fe7 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -4230,7 +4230,7 @@ PP(pp_entergiven)
ENTER_with_name("given");
SAVETMPS;
- sv_setsv(PAD_SV(PL_op->op_targ), POPs);
+ sv_setsv_mg(PAD_SV(PL_op->op_targ), POPs);
PUSHBLOCK(cx, CXt_GIVEN, SP);
PUSHGIVEN(cx);