[PHP-DEV] Re: Why module shutdown function is not called for openssl extension?

2004-10-26 Thread Kamesh Jayachandran
Hi Wez, zend_module_entry openssl_module_entry = { STANDARD_MODULE_HEADER, openssl, openssl_functions, PHP_MINIT(openssl), NULL, //supposed to be module shutdown function but marked as NULL even though we have MSHUTDOWN function defined.

Re: [PHP-DEV] Re: Why module shutdown function is not called for openssl extension?

2004-10-26 Thread Wez Furlong
Heh, looks like it's never ever been enabled since ext/openssl was born. I committed your patch; the associated bug number was 29418. Thanks :) --Wez. On Mon, 25 Oct 2004 23:17:19 -0700, Kamesh Jayachandran [EMAIL PROTECTED] wrote: Hi Wez, zend_module_entry openssl_module_entry = {

Re: [PHP-DEV] Re: Why module shutdown function is not called for openssl extension?

2004-10-26 Thread Kamesh Jayachandran
Thanks for applying my patches. When will it be applied to PHP4.3 and 5.0 tree? With regards Kamesh Jayachandran On Tue, 26 Oct 2004 10:34:19 +0100, Wez Furlong [EMAIL PROTECTED] said: Heh, looks like it's never ever been enabled since ext/openssl was born. I committed your patch; the

Re: [PHP-DEV] Re: Why module shutdown function is not called for openssl extension?

2004-10-26 Thread Wez Furlong
It's already applied to all 3 branches. --Wez. On Tue, 26 Oct 2004 03:08:10 -0700, Kamesh Jayachandran [EMAIL PROTECTED] wrote: Thanks for applying my patches. When will it be applied to PHP4.3 and 5.0 tree? -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

[PHP-DEV] Re: Why module shutdown function is not called for openssl extension?

2004-10-25 Thread Wez Furlong
Kamesh Jayachandran wrote: During the failure openssl_csr_new is not setting req.priv_key to NULL this causes dispose function to free the req.priv_key. Can I go ahead and set req.priv_key = NULL when php_openssl_make_REQ returns failure and we_made_the_key == 0? Please send me a diff I have seen