summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-06-26 13:23:46 +0000
committerDmitry Stogov <dmitry@php.net>2006-06-26 13:23:46 +0000
commitde85c9cd7028a9804837969f1090e5b1b066d8b3 (patch)
tree627101555835739b078d05f7c6f347650e07ac72 /ext
parent862c4d23450ec198eb8c325917c06380bc6acaa3 (diff)
downloadphp-git-de85c9cd7028a9804837969f1090e5b1b066d8b3.tar.gz
Fixed bug #37862 (Integer pointer comparison to numeric value)
Diffstat (limited to 'ext')
-rw-r--r--ext/soap/php_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c
index e0f1a8dffa..a1c7ef54a4 100644
--- a/ext/soap/php_sdl.c
+++ b/ext/soap/php_sdl.c
@@ -2193,7 +2193,7 @@ static void add_sdl_to_cache(const char *fn, const char *uri, time_t t, sdlPtr s
zend_hash_find(&tmp_bindings,(char*)&(*tmp)->binding,sizeof((*tmp)->binding), (void**)&binding_num) != SUCCESS) {
}
WSDL_CACHE_PUT_INT(*binding_num, out);
- if (binding_num >= 0) {
+ if (*binding_num >= 0) {
if ((*tmp)->binding->bindingType == BINDING_SOAP && (*tmp)->bindingAttributes != NULL) {
sdlSoapBindingFunctionPtr binding = (sdlSoapBindingFunctionPtr)(*tmp)->bindingAttributes;
WSDL_CACHE_PUT_1(binding->style, out);