diff options
| author | Zeev Suraski <zeev@php.net> | 2001-07-31 05:44:11 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-07-31 05:44:11 +0000 |
| commit | aa1772ca7263173ee47af0d83fea866f194757ba (patch) | |
| tree | a8ea8932a07875a43423a8ffcd0100eab0c0f8a7 /ext/openssl | |
| parent | 57507b4ea6bb2a38578444ca8359806f241fa8f5 (diff) | |
| download | php-git-aa1772ca7263173ee47af0d83fea866f194757ba.tar.gz | |
More TSRMLS_FETCH annihilation
Diffstat (limited to 'ext/openssl')
| -rw-r--r-- | ext/openssl/openssl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index c4ac6e6ffb..d34bca6d99 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -97,10 +97,10 @@ zend_module_entry openssl_module_entry = { ZEND_GET_MODULE(openssl) #endif -static void _php_pkey_free(zend_rsrc_list_entry *rsrc); +static void _php_pkey_free(zend_rsrc_list_entry *rsrc TSRMLS_DC); static int le_key; -static void _php_x509_free(zend_rsrc_list_entry *rsrc); +static void _php_x509_free(zend_rsrc_list_entry *rsrc TSRMLS_DC); static int le_x509; static X509 * php_openssl_x509_from_zval(zval ** val, int makeresource, long * resourceval); @@ -1856,7 +1856,7 @@ PHP_FUNCTION(openssl_open) /* }}} */ /* {{{ _php_pkey_free() */ -static void _php_pkey_free(zend_rsrc_list_entry *rsrc) +static void _php_pkey_free(zend_rsrc_list_entry *rsrc TSRMLS_DC) { EVP_PKEY *pkey = (EVP_PKEY *)rsrc->ptr; EVP_PKEY_free(pkey); @@ -1864,7 +1864,7 @@ static void _php_pkey_free(zend_rsrc_list_entry *rsrc) /* }}} */ /* {{{ _php_x509_free() */ -static void _php_x509_free(zend_rsrc_list_entry *rsrc) +static void _php_x509_free(zend_rsrc_list_entry *rsrc TSRMLS_DC) { X509 *x509 = (X509 *)rsrc->ptr; X509_free(x509); |
