diff options
| author | Dmitry Stogov <dmitry@php.net> | 2008-03-04 12:23:10 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2008-03-04 12:23:10 +0000 |
| commit | f4068e65ba15212725e59baa9471b6c3223c78fe (patch) | |
| tree | 32b8e037c04466f272c23bc2491adde11ad03472 | |
| parent | 0d7d1397004218cb1c3a521cc0f690e7b800fd2f (diff) | |
| download | php-git-f4068e65ba15212725e59baa9471b6c3223c78fe.tar.gz | |
Fixed SIGSEGV because of acess to uninitialized data
| -rw-r--r-- | ext/soap/soap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 5fda0c95b3..479639eb9d 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -511,6 +511,7 @@ PHP_RINIT_FUNCTION(soap) SOAP_GLOBAL(encoding) = NULL; SOAP_GLOBAL(class_map) = NULL; SOAP_GLOBAL(features) = 0; + SOAP_GLOBAL(ref_map) = NULL; return SUCCESS; } |
