diff options
author | Antony Dovgal <tony2001@php.net> | 2006-02-06 11:28:20 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-02-06 11:28:20 +0000 |
commit | 96543b01ad06ed275eb2f53132b1e47505aa8e6a (patch) | |
tree | eb19a737c6f1fabef2d42d45b149fb049ab8853d /ext/soap/php_sdl.c | |
parent | 01937aa77fbcb32b642323cb2e6b99731b8b8839 (diff) | |
download | php-git-96543b01ad06ed275eb2f53132b1e47505aa8e6a.tar.gz |
initialize variables and reduce the number of warnings
Diffstat (limited to 'ext/soap/php_sdl.c')
-rw-r--r-- | ext/soap/php_sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c index 75f8e661d2..e2698ebcab 100644 --- a/ext/soap/php_sdl.c +++ b/ext/soap/php_sdl.c @@ -2264,7 +2264,7 @@ sdlPtr get_sdl(zval *this_ptr, char *uri TSRMLS_DC) char* old_error_code = SOAP_GLOBAL(error_code); int uri_len; php_stream_context *context=NULL; - zval **tmp, **proxy_host, **proxy_port, *orig_context, *new_context; + zval **tmp, **proxy_host, **proxy_port, *orig_context = NULL, *new_context = NULL; smart_str headers = {0}; if (SUCCESS == zend_hash_find(Z_OBJPROP_P(this_ptr), |