derick Wed, 30 Dec 2009 13:31:53 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=3182
Log:
- Fixed bug #423: Conflicts with funcall.
Changed paths:
U xdebug/trunk/xdebug.c
Modified: xdebug/trunk/xdebug.c
===================================================================
--- xdebug/trunk/xdebug.c 2009-12-30 12:48:47 UTC (rev 3181)
+++ xdebug/trunk/xdebug.c 2009-12-30 13:31:53 UTC (rev 3182)
@@ -1820,7 +1820,11 @@
if (XG(profiler_enabled)) {
xdebug_profiler_function_internal_begin(fse TSRMLS_CC);
}
- execute_internal(current_execute_data, return_value_used TSRMLS_CC);
+ if (xdebug_old_execute_internal) {
+ xdebug_old_execute_internal(current_execute_data, return_value_used TSRMLS_CC);
+ } else {
+ execute_internal(current_execute_data, return_value_used TSRMLS_CC);
+ }
if (XG(profiler_enabled)) {
xdebug_profiler_function_internal_end(fse TSRMLS_CC);
Received on Wed Dec 30 2009 - 13:31:54 GMT
This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:03 BST