tony2001                Wed Jan 30 12:50:59 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/reflection     php_reflection.c 
  Log:
  fix ZTS build
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/reflection/php_reflection.c?r1=1.164.2.33.2.45.2.8&r2=1.164.2.33.2.45.2.9&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.164.2.33.2.45.2.8 
php-src/ext/reflection/php_reflection.c:1.164.2.33.2.45.2.9
--- php-src/ext/reflection/php_reflection.c:1.164.2.33.2.45.2.8 Wed Jan 30 
10:27:28 2008
+++ php-src/ext/reflection/php_reflection.c     Wed Jan 30 12:50:59 2008
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_reflection.c,v 1.164.2.33.2.45.2.8 2008/01/30 10:27:28 felipe Exp 
$ */
+/* $Id: php_reflection.c,v 1.164.2.33.2.45.2.9 2008/01/30 12:50:59 tony2001 
Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -3402,7 +3402,7 @@
                return;
        }
        GET_REFLECTION_OBJECT_PTR(ce);  
-       RETURN_BOOL(HAS_CLASS_ENTRY(*object) && 
instanceof_function(Z_OBJCE_P(object), ce));
+       RETURN_BOOL(HAS_CLASS_ENTRY(*object) && 
instanceof_function(Z_OBJCE_P(object), ce TSRMLS_CC));
 }
 /* }}} */
 
@@ -4913,7 +4913,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.164.2.33.2.45.2.8 2008/01/30 10:27:28 felipe Exp $");
+       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 
1.164.2.33.2.45.2.9 2008/01/30 12:50:59 tony2001 Exp $");
 
        php_info_print_table_end();
 } /* }}} */

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

Reply via email to