summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-09-22 16:01:48 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-09-22 16:01:48 +0000
commitb83535cb553b94cd457aaceadbc320b293a81b7c (patch)
treefcdecfade8ccfb2652c468f025c4bc3a32791f49 /pp.c
parentd9f997d712a9ca9f2b66409f2920290ddaf904c3 (diff)
downloadperl-b83535cb553b94cd457aaceadbc320b293a81b7c.tar.gz
runops becomes a funtion pointer and sv_bless3 created
to avoid pointer forgery with '~'-magic. p4raw-id: //depot/perl@68
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 01c61c25a1..ff00688c7a 100644
--- a/pp.c
+++ b/pp.c
@@ -426,7 +426,7 @@ PP(pp_bless)
else
stash = gv_stashsv(POPs, TRUE);
- (void)sv_bless(TOPs, stash);
+ (void)sv_bless3(TOPs, stash, TRUE);
RETURN;
}