diff options
author | Sara Golemon <pollita@php.net> | 2004-07-14 00:14:43 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2004-07-14 00:14:43 +0000 |
commit | c4bf45e39ad40ca4de34558e5d9b3a61ed97eab4 (patch) | |
tree | c0ce3345caa4457afd3c5eeaddcf03e6899a1296 /ext/bcmath/php_bcmath.h | |
parent | 2ec89aa8e1f159ee0461886744dc0f4da4276c15 (diff) | |
download | php-git-c4bf45e39ad40ca4de34558e5d9b3a61ed97eab4.tar.gz |
Bugfix# 28829 bcmath values for 0, 1, and 2 initialized/freed at wrong time for threaded sapis.
Diffstat (limited to 'ext/bcmath/php_bcmath.h')
-rw-r--r-- | ext/bcmath/php_bcmath.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bcmath/php_bcmath.h b/ext/bcmath/php_bcmath.h index 32d005e226..c99fd2534c 100644 --- a/ext/bcmath/php_bcmath.h +++ b/ext/bcmath/php_bcmath.h @@ -30,6 +30,8 @@ extern zend_module_entry bcmath_module_entry; PHP_MINIT_FUNCTION(bcmath); PHP_MSHUTDOWN_FUNCTION(bcmath); +PHP_RINIT_FUNCTION(bcmath); +PHP_RSHUTDOWN_FUNCTION(bcmath); PHP_MINFO_FUNCTION(bcmath); PHP_FUNCTION(bcadd); |