Skip to content

Commit 6171362

Browse files
committed
ext/soap: Indentation fix
1 parent f0a35e2 commit 6171362

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

ext/soap/php_sdl.c

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -564,15 +564,14 @@ static void wsdl_soap_binding_body(sdlCtx* ctx, xmlNodePtr node, char* wsdl_soap
564564
end = strchr(parts, ' ');
565565
if (end) *end = '\0';
566566
ZEND_HASH_FOREACH_PTR(params, param) {
567-
if (param->paramName &&
568-
strcmp(parts, param->paramName) == 0) {
569-
sdlParamPtr x_param;
570-
x_param = emalloc(sizeof(sdlParam));
571-
*x_param = *param;
572-
param->paramName = NULL;
573-
zend_hash_next_index_insert_ptr(&ht, x_param);
574-
found = true;
575-
break;
567+
if (param->paramName && strcmp(parts, param->paramName) == 0) {
568+
sdlParamPtr x_param;
569+
x_param = emalloc(sizeof(sdlParam));
570+
*x_param = *param;
571+
param->paramName = NULL;
572+
zend_hash_next_index_insert_ptr(&ht, x_param);
573+
found = true;
574+
break;
576575
}
577576
} ZEND_HASH_FOREACH_END();
578577
if (!found) {

0 commit comments

Comments
 (0)