summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69732.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug69732.phpt')
-rw-r--r--Zend/tests/bug69732.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug69732.phpt b/Zend/tests/bug69732.phpt
index 8d5fccd712..06dd5389dd 100644
--- a/Zend/tests/bug69732.phpt
+++ b/Zend/tests/bug69732.phpt
@@ -4,17 +4,17 @@ Bug #69732 (can induce segmentation fault with basic php code)
<?php
class wpq {
private $unreferenced;
-
+
public function __get($name) {
return $this->$name . "XXX";
}
}
-
+
function ret_assoc() {
$x = "XXX";
return array('foo' => 'bar', $x);
}
-
+
$wpq = new wpq;
$wpq->interesting =& ret_assoc();
$x = $wpq->interesting;