diff options
author | Marcus Boerger <helly@php.net> | 2004-02-02 21:27:13 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-02-02 21:27:13 +0000 |
commit | b1c77fcce38f2ebebc2de93854aacc24e47f7fb8 (patch) | |
tree | c532e7394e9533fa8b90b961a8591d540df38da1 /ext/soap/php_http.c | |
parent | 391494c0eff7f088bc896e7ad30dac95ae4de0dd (diff) | |
download | php-git-b1c77fcce38f2ebebc2de93854aacc24e47f7fb8.tar.gz |
TSRM fixes
Diffstat (limited to 'ext/soap/php_http.c')
-rw-r--r-- | ext/soap/php_http.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 3073ea73b8..fc82fabe67 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -59,6 +59,8 @@ static int stream_alive(php_stream *stream TSRMLS_DC) static void proxy_authentication(zval* this_ptr, smart_str* soap_headers) { zval **login, **password; + TSRMLS_FETCH(); + if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_login", sizeof("_proxy_login"), (void **)&login) == SUCCESS) { char* buf; int len; |