Date: Sat Aug 19 17:43:28 CEST 2006
User: Derick Rethans
Directory: xdebug
Log Message:
[0.05]
- ZTS issues.
Modified files:
xdebug/xdebug.c (version: 1.328)
[FILE: /xdebug/xdebug.c]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.327
retrieving revision 1.328
diff -u -r1.327 -r1.328
--- xdebug/xdebug.c:1.327 Sat Aug 19 11:34:03 2006 GMT
+++ xdebug/xdebug.c Sat Aug 19 13:43:28 2006 GMT
@@ -2119,7 +2119,7 @@
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &depth) == FAILURE) {
return;
}
- i = xdebug_get_stack_frame(2 + depth);
+ i = xdebug_get_stack_frame(2 + depth TSRMLS_CC);
if (i) {
RETURN_STRING(i->function.class ? i->function.class : "", 1);
} else {
@@ -2138,7 +2138,7 @@
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &depth) == FAILURE) {
return;
}
- i = xdebug_get_stack_frame(2 + depth);
+ i = xdebug_get_stack_frame(2 + depth TSRMLS_CC);
if (i) {
RETURN_STRING(i->function.function ? i->function.function : "{}", 1);
} else {
@@ -2157,7 +2157,7 @@
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &depth) == FAILURE) {
return;
}
- i = xdebug_get_stack_frame(1 + depth);
+ i = xdebug_get_stack_frame(1 + depth TSRMLS_CC);
if (i) {
RETURN_LONG(i->lineno);
} else {
@@ -2176,7 +2176,7 @@
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &depth) == FAILURE) {
return;
}
- i = xdebug_get_stack_frame(1 + depth);
+ i = xdebug_get_stack_frame(1 + depth TSRMLS_CC);
if (i) {
RETURN_STRING(i->filename, 1);
} else {
Received on Sat Aug 19 2006 - 17:43:31 BST
This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:03 BST