summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2008-09-09 01:21:07 +0000
committerIlia Alshanetsky <iliaa@php.net>2008-09-09 01:21:07 +0000
commit6a2729ed4d09ba4c387db2aa67733c8ea448e7e6 (patch)
treec07b6546d5de63606e4dd8b868b2d2d9578c4401
parentf77aa102eaab2c3faf0acdbb1f12f628c1bc9904 (diff)
downloadphp-git-6a2729ed4d09ba4c387db2aa67733c8ea448e7e6.tar.gz
Fixed a compiler warning
-rw-r--r--ext/soap/soap.c2
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);