File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -672,9 +672,9 @@ int make_http_soap_request(zval *this_ptr,
672
672
if (UNEXPECTED (php_random_bytes_throw (& nonce , sizeof (nonce )) != SUCCESS )) {
673
673
ZEND_ASSERT (EG (exception ));
674
674
php_stream_close (stream );
675
- convert_to_null ( Z_CLIENT_HTTPURL_P (this_ptr ));
676
- convert_to_null ( Z_CLIENT_HTTPSOCKET_P (this_ptr ));
677
- convert_to_null ( Z_CLIENT_USE_PROXY_P (this_ptr ));
675
+ zend_hash_str_del ( Z_OBJPROP_P (this_ptr ), "httpurl" , sizeof ( "httpurl" ) - 1 );
676
+ zend_hash_str_del ( Z_OBJPROP_P (this_ptr ), "httpsocket" , sizeof ( "httpsocket" ) - 1 );
677
+ zend_hash_str_del ( Z_OBJPROP_P (this_ptr ), "_use_proxy" , sizeof ( "_use_proxy" ) - 1 );
678
678
smart_str_free (& soap_headers_z );
679
679
smart_str_free (& soap_headers );
680
680
return FALSE;
You can’t perform that action at this time.
0 commit comments