Commit:    a18cede1c5094d5255daeb99cd6debe09938399d
Author:    Matt Ficken <mattfic...@php.net>         Mon, 11 Jun 2012 17:00:36 
+0200
Committer: Anatoliy Belsky <a...@php.net>      Mon, 11 Jun 2012 17:00:36 +0200
Parents:   b55e69285bdfa280b94673e8a9434be6c08c65dc
Branches:  PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=a18cede1c5094d5255daeb99cd6debe09938399d

Log:
Fix bug #62271 test bug - ext/wddx/tests/bug48562.phpt

Bugs:
https://bugs.php.net/62271
https://bugs.php.net/48562

Changed paths:
  M  ext/wddx/tests/bug48562.phpt


Diff:
diff --git a/ext/wddx/tests/bug48562.phpt b/ext/wddx/tests/bug48562.phpt
index ebd2004..ee9f271 100644
--- a/ext/wddx/tests/bug48562.phpt
+++ b/ext/wddx/tests/bug48562.phpt
@@ -16,6 +16,12 @@ $a['x'] = &$a;
 
 var_dump(wddx_serialize_vars($a));
 
+// replace $a - the recursion detection seems to be causing $a to be not an 
array here, maybe its internally a pointer
+// replacing $a with a new array() allows this test to still check for 2 things
+//  1. recursion detection in &$a;
+//  2. recursion detection in adding $a to itself and then serializing $a
+// the one thing the test won't check is using $a as an array after doing &$a; 
which isn't really a wddx problem.
+$a = array();
 $a['x'] = 'foo';
 $a['x'] = $a;


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to