diff options
author | Antony Dovgal <tony2001@php.net> | 2006-02-06 11:01:06 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-02-06 11:01:06 +0000 |
commit | 8911fac6534bc676022e178dfe4d71a29ba5ed2f (patch) | |
tree | a2c79c1186619183eb82521ce7f86926914d3244 | |
parent | c353a52a110c0dbca89535a61d8cfe44bd38eb7f (diff) | |
download | php-git-8911fac6534bc676022e178dfe4d71a29ba5ed2f.tar.gz |
MFH: initialize variable and make gcc happy
-rw-r--r-- | ext/soap/soap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c index d539a51810..6ee6525b3b 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -758,7 +758,7 @@ PHP_METHOD(SoapHeader, SoapHeader) PHP_METHOD(SoapFault, SoapFault) { char *fault_string = NULL, *fault_code = NULL, *fault_actor = NULL, *name = NULL, *fault_code_ns = NULL; - int fault_string_len, fault_code_len, fault_actor_len, name_len; + int fault_string_len, fault_actor_len, name_len, fault_code_len = 0; zval *code = NULL, *details = NULL, *headerfault = NULL; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs|s!z!s!z", |