diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-09-22 16:01:48 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-09-22 16:01:48 +0000 |
commit | b83535cb553b94cd457aaceadbc320b293a81b7c (patch) | |
tree | fcdecfade8ccfb2652c468f025c4bc3a32791f49 /pp.c | |
parent | d9f997d712a9ca9f2b66409f2920290ddaf904c3 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |