summaryrefslogtreecommitdiff
path: root/Zend/tests/bug74084.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug74084.phpt')
-rw-r--r--Zend/tests/bug74084.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/tests/bug74084.phpt b/Zend/tests/bug74084.phpt
index b27bbb4647..2e65471bcc 100644
--- a/Zend/tests/bug74084.phpt
+++ b/Zend/tests/bug74084.phpt
@@ -4,15 +4,15 @@ Bug #74084 (Out of bound read - zend_mm_alloc_small)
error_reporting=0
--FILE--
<?php
-$$A += $$B->a = &$$C;
+$$A += $$B->a = &$$C;
unset($$A);
-$$A -= $$B->a = &$$C;
+$$A -= $$B->a = &$$C;
unset($$A);
-$$A *= $$B->a = &$$C;
+$$A *= $$B->a = &$$C;
unset($$A);
-$$A /= $$B->a = &$$C;
+$$A /= $$B->a = &$$C;
unset($$A);
-$$A **= $$B->a = &$$C;
+$$A **= $$B->a = &$$C;
var_dump($$A);
?>
--EXPECT--