diff options
author | Father Chrysostomos <sprout@cpan.org> | 2016-06-10 18:08:50 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2016-06-11 06:17:01 -0700 |
commit | 79409ac8354d04a53c3ba700bc429df2d9bd2043 (patch) | |
tree | 76814f549443af3915802134d717c88e7a341e7c /op.c | |
parent | 1a3e97240d9aa40adfeecbebce3f3cce94fe131b (diff) | |
download | perl-79409ac8354d04a53c3ba700bc429df2d9bd2043.tar.gz |
[perl #128260] Fix lvalue cx for substr and vec
When lvalue context was applied to the substr and vec at compile time,
that context was propagated to the first argument. That meant that
substr %foo, 1, = 3;
would correctly die, but give the wrong op in the error message, say-
ing ‘in scalar assignment’ whereas ‘in substr’ is more appropriate.
Contrariwise,
(substr %foo, 1) = 3;
would apply list lvalue context to %foo, which does not die at compile
time and prevents flattening (that’s what allows %foo=... to work).
The unflattened hash would be passed to internal functions that only
expect scalars, resulting in assertion failures.
The fix is to introduce two new types of scalar lvalue context, namely
OP_SUBSTR and OP_VEC, and apply those to the first argument, causing
both the examples above to die at compile time with ‘Can't modify hash
dereference in substr’.
If the surrounding context is only potential modifiable context (such
as \substr), then that same non-fatal context is applied to the
first argument.
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -3059,8 +3059,15 @@ Perl_op_lvalue_flags(pTHX_ OP *o, I32 type, U32 flags) lvalue_func: if (type == OP_LEAVESUBLV) o->op_private |= OPpMAYBE_LVSUB; - if (o->op_flags & OPf_KIDS) - op_lvalue(OpSIBLING(cBINOPo->op_first), type); + if (o->op_flags & OPf_KIDS && OpHAS_SIBLING(cBINOPo->op_first)) { + /* substr and vec */ + /* If this op is in merely potential (non-fatal) modifiable + context, then propagate that context to the kid op. Other- + wise pass this op’s own type so the correct op is mentioned + in error messages. */ + op_lvalue(OpSIBLING(cBINOPo->op_first), + S_potential_mod_type(type) ? type : o->op_type); + } break; case OP_AELEM: @@ -3253,6 +3260,8 @@ S_scalar_mod_type(const OP *o, I32 type) case OP_ANDASSIGN: case OP_ORASSIGN: case OP_DORASSIGN: + case OP_VEC: + case OP_SUBSTR: return TRUE; default: return FALSE; |