summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-24 10:32:33 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-24 10:32:33 +0000
commit410d09fe7bf183b91b57fda7558a8a97b5eb200a (patch)
treeb0c19dfa6fe15480a9a93abf4bbd3d8a2ba5c25b
parentb708784ed29bddb36a466db5f726fe7b7635e19b (diff)
downloadperl-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/op.c b/op.c
index 8cf8cd9c5c..50728a535c 100644
--- a/op.c
+++ b/op.c
@@ -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;