diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-24 10:32:33 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-24 10:32:33 +0000 |
commit | 410d09fe7bf183b91b57fda7558a8a97b5eb200a (patch) | |
tree | b0c19dfa6fe15480a9a93abf4bbd3d8a2ba5c25b | |
parent | b708784ed29bddb36a466db5f726fe7b7635e19b (diff) | |
download | perl-410d09fe7bf183b91b57fda7558a8a97b5eb200a.tar.gz |
Fix a bug in dor assignment (@x //= 1 was triggering an
assertion failure)
p4raw-id: //depot/perl@31050
-rw-r--r-- | op.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1649,6 +1649,7 @@ S_scalar_mod_type(const OP *o, I32 type) case OP_RECV: case OP_ANDASSIGN: case OP_ORASSIGN: + case OP_DORASSIGN: return TRUE; default: return FALSE; |