tony2001 Tue Jul 29 07:33:58 2008 UTC
Modified files:
/php-src/ext/reflection php_reflection.c
Log:
no need for FETCH anymore..
http://cvs.php.net/viewvc.cgi/php-src/ext/reflection/php_reflection.c?r1=1.306&r2=1.307&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.306
php-src/ext/reflection/php_reflection.c:1.307
--- php-src/ext/reflection/php_reflection.c:1.306 Tue Jul 29 07:32:52 2008
+++ php-src/ext/reflection/php_reflection.c Tue Jul 29 07:33:58 2008
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_reflection.c,v 1.306 2008/07/29 07:32:52 tony2001 Exp $ */
+/* $Id: php_reflection.c,v 1.307 2008/07/29 07:33:58 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -892,7 +892,6 @@
char *indent = va_arg(args, char *);
struct _zend_module_entry *module = va_arg(args, struct
_zend_module_entry*);
int *num_classes = va_arg(args, int*);
- TSRMLS_FETCH();
if ((*pce)->module && !strcasecmp((*pce)->module->name, module->name)) {
string_printf(str, "\n");
@@ -4604,8 +4603,6 @@
int number = va_arg(args, int);
if (number == ini_entry->module_number) {
- TSRMLS_FETCH();
-
if (ini_entry->value) {
add_ascii_assoc_rt_stringl(retval, ini_entry->name,
ini_entry->value, ini_entry->value_length, 1);
} else {
@@ -5257,7 +5254,7 @@
php_info_print_table_start();
php_info_print_table_header(2, "Reflection", "enabled");
- php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.306
2008/07/29 07:32:52 tony2001 Exp $");
+ php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.307
2008/07/29 07:33:58 tony2001 Exp $");
php_info_print_table_end();
} /* }}} */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php