1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00

Fixed ZTS build of fdf extension.

This commit is contained in:
Ilia Alshanetsky
2005-04-20 22:51:45 +00:00
parent e836164570
commit 4eccd5df70
+2 -2
View File
@@ -145,7 +145,7 @@ PHP_MINIT_FUNCTION(fdf)
le_fdf = zend_register_list_destructors_ex(phpi_FDFClose, NULL, "fdf", module_number);
/* add handler for Acrobat FDF form post requests */
sapi_register_post_entry(&php_fdf_post_entry);
sapi_register_post_entry(&php_fdf_post_entry TSRMLS_CC);
/* Constants used by fdf_set_opt() */
@@ -215,7 +215,7 @@ PHP_MINFO_FUNCTION(fdf)
PHP_MSHUTDOWN_FUNCTION(fdf)
{
/* remove handler for Acrobat FDF form post requests */
sapi_unregister_post_entry(&php_fdf_post_entry);
sapi_unregister_post_entry(&php_fdf_post_entry TSRMLS_CC);
#ifdef PHP_WIN32
return SUCCESS;