diff options
| author | Dmitry Stogov <dmitry@php.net> | 2008-03-04 12:47:18 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2008-03-04 12:47:18 +0000 |
| commit | 29eac881b0b75aa58ba1e75595f5ab74336164db (patch) | |
| tree | 3a5a9f0f196bace703330a36ac1e8fee00579323 | |
| parent | 430e54d4579b6f815671fc2648ccc7fe41d89d9a (diff) | |
| download | php-git-29eac881b0b75aa58ba1e75595f5ab74336164db.tar.gz | |
Fixed SIGSEGV because of access 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 42a23c8891..2d09138f48 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; } |
