diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2008-09-09 01:21:07 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2008-09-09 01:21:07 +0000 |
commit | 6a2729ed4d09ba4c387db2aa67733c8ea448e7e6 (patch) | |
tree | c07b6546d5de63606e4dd8b868b2d2d9578c4401 | |
parent | f77aa102eaab2c3faf0acdbb1f12f628c1bc9904 (diff) | |
download | php-git-6a2729ed4d09ba4c387db2aa67733c8ea448e7e6.tar.gz |
Fixed a compiler warning
-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 681469b7b4..d5c89c186f 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -1109,7 +1109,7 @@ static HashTable* soap_create_typemap(sdlPtr sdl, HashTable *ht TSRMLS_DC) if (Z_TYPE_PP(tmp) != IS_ARRAY) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Wrong 'typemap' option"); - return; + return NULL; } ht2 = Z_ARRVAL_PP(tmp); |