mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Fixed bug #37862 (Integer pointer comparison to numeric value)
This commit is contained in:
parent
157ce4f35e
commit
ce56c376df
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue