summaryrefslogtreecommitdiff
path: root/ext/curl
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2002-10-21 22:35:59 +0000
committerSterling Hughes <sterling@php.net>2002-10-21 22:35:59 +0000
commit102c94550126b9e004d22620300033f0fe9a2006 (patch)
tree59ba60e76732402dbf410db940e0cdf7226ef749 /ext/curl
parentc4cb92229cbde4bca3686f33cf8182cbf0495fa1 (diff)
downloadphp-git-102c94550126b9e004d22620300033f0fe9a2006.tar.gz
no need to double fetch
Diffstat (limited to 'ext/curl')
-rw-r--r--ext/curl/curl.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/curl/curl.c b/ext/curl/curl.c
index eff87cc0c7..ffbdf1b0fe 100644
--- a/ext/curl/curl.c
+++ b/ext/curl/curl.c
@@ -304,7 +304,6 @@ static size_t curl_write(char *data, size_t size, size_t nmemb, void *ctx)
php_curl *ch = (php_curl *) ctx;
php_curl_write *t = ch->handlers->write;
size_t length = size * nmemb;
- TSRMLS_FETCH();
switch (t->method) {
case PHP_CURL_STDOUT:
@@ -1125,6 +1124,6 @@ static void _php_curl_close(zend_rsrc_list_entry *rsrc TSRMLS_DC)
* tab-width: 4
* c-basic-offset: 4
* End:
- * vim600: noet sw=4 ts=4 fdm=marker
- * vim<600: noet sw=4 ts=4
+ * vim600: fdm=marker
+ * vim: noet sw=4 ts=4
*/