dmitry Wed Apr 25 14:18:15 2007 UTC Modified files: /php-src/main SAPI.c Log: ZTS fix http://cvs.php.net/viewvc.cgi/php-src/main/SAPI.c?r1=1.223&r2=1.224&diff_format=u Index: php-src/main/SAPI.c diff -u php-src/main/SAPI.c:1.223 php-src/main/SAPI.c:1.224 --- php-src/main/SAPI.c:1.223 Wed Apr 25 11:19:10 2007 +++ php-src/main/SAPI.c Wed Apr 25 14:18:15 2007 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: SAPI.c,v 1.223 2007/04/25 11:19:10 tony2001 Exp $ */ +/* $Id: SAPI.c,v 1.224 2007/04/25 14:18:15 dmitry Exp $ */ #include <ctype.h> #include <sys/stat.h> @@ -794,7 +794,7 @@ SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry TSRMLS_DC) { - if (EG(in_execution)) { + if (SG(sapi_started) && EG(in_execution)) { return FAILURE; } @@ -805,7 +805,7 @@ SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry TSRMLS_DC) { - if (EG(in_execution)) { + if (SG(sapi_started) && EG(in_execution)) { return; } zend_hash_del(&SG(known_post_content_types), post_entry->content_type, @@ -816,7 +816,7 @@ SAPI_API int sapi_register_default_post_reader(void (*default_post_reader)(TSRMLS_D)) { TSRMLS_FETCH(); - if (EG(in_execution)) { + if (SG(sapi_started) && EG(in_execution)) { return FAILURE; } sapi_module.default_post_reader = default_post_reader; @@ -827,7 +827,7 @@ SAPI_API int sapi_register_treat_data(void (*treat_data)(int arg, char *str, zval *destArray TSRMLS_DC)) { TSRMLS_FETCH(); - if (EG(in_execution)) { + if (SG(sapi_started) && EG(in_execution)) { return FAILURE; } sapi_module.treat_data = treat_data; @@ -837,7 +837,7 @@ SAPI_API int sapi_register_input_filter(unsigned int (*input_filter)(int arg, char *var, char **val, unsigned int val_len, unsigned int *new_val_len TSRMLS_DC)) { TSRMLS_FETCH(); - if (EG(in_execution)) { + if (SG(sapi_started) && EG(in_execution)) { return FAILURE; } sapi_module.input_filter = input_filter;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php