summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-10-25 10:52:42 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-10-25 10:52:42 -0700
commit9aa8b00892d81bb5e94565d3cb9841dd57b7b9cf (patch)
tree8e675bf2f7f25b746b99e3f094065bade479e592 /pp_sys.c
parent0095ccd463db264dc799ca02921528f64f1dc0b2 (diff)
downloadperl-9aa8b00892d81bb5e94565d3cb9841dd57b7b9cf.tar.gz
[perl #77688] tie $scalar can tie a handle
Make tie() distinguish between $scalar and *$scalar when $scalar holds a glob copy, by checking the FAKE flag.
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sys.c b/pp_sys.c
index f47395bf53..7fa9f02e31 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -826,7 +826,7 @@ PP(pp_tie)
break;
case SVt_PVGV:
case SVt_PVLV:
- if (isGV_with_GP(varsv)) {
+ if (isGV_with_GP(varsv) && !SvFAKE(varsv)) {
methname = "TIEHANDLE";
how = PERL_MAGIC_tiedscalar;
/* For tied filehandles, we apply tiedscalar magic to the IO