-
Fixed issue getting executable lines from custom wrappers
See also krakjoe/phpdbg#161
-
Fixed a potential segfault in zend_objects_store_free_object_storage()
Under the special circumstance where a garbage collected objects bucket slot was not reused until the end of the script, we get access into freed memory... No test added as it usually is valgrind-only, and only sometimes when the memory happens to have changed (i.e. (GC_FLAGS(obj) & IS_OBJ_FREE_CALLED) == 0), it actually *may* segfault
-
Fixed bug #72284 (phpdbg fatal errors with coverage)
Cherry-pick of original commits d3371b and 0f20e11 only present in master
-
This should only have been reverted in 7.0, but not for 7.1. (merge=ours??) Added appropriate NEWS entry.
-
bwoebi committed
Apr 16, 2016 -
Fixed bug #72038 (Function calls with values to a by-ref parameter do…
…n't always throw a notice)
-
Fixed bug #71622 (Strings used in pass-as-reference cannot be used to…
… invoke C::$callable())
-
Fix crash when advancing inside an internal function
This just happened in the "double ctrl+c" mode, when we halted inside an internal function; there was some code assuming a proper op_array
-
Fixed inherited functions from unspecified files being included in ph…
…pdbg_get_executable() See also https://github.com/krakjoe/phpdbg/issues/152