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/curl | |
parent | 57507b4ea6bb2a38578444ca8359806f241fa8f5 (diff) | |
download | php-git-aa1772ca7263173ee47af0d83fea866f194757ba.tar.gz |
More TSRMLS_FETCH annihilation
Diffstat (limited to 'ext/curl')
-rw-r--r-- | ext/curl/curl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/curl/curl.c b/ext/curl/curl.c index 2d74030608..a5f2f66f68 100644 --- a/ext/curl/curl.c +++ b/ext/curl/curl.c @@ -44,7 +44,7 @@ static int le_curl; #define le_curl_name "cURL handle" -static void _php_curl_close(zend_rsrc_list_entry *rsrc); +static void _php_curl_close(zend_rsrc_list_entry *rsrc TSRMLS_DC); #define SAVE_CURL_ERROR(__handle, __err) (__handle)->err.no = (int) __err; @@ -995,7 +995,7 @@ PHP_FUNCTION(curl_close) /* {{{ _php_curl_close() List destructor for curl handles */ -static void _php_curl_close(zend_rsrc_list_entry *rsrc) +static void _php_curl_close(zend_rsrc_list_entry *rsrc TSRMLS_DC) { php_curl *ch = (php_curl *) rsrc->ptr; |