Skip to content

Commit bc0871d

Browse files
committed
Merge branch 'PHP-8.4' into PHP-8.5
* PHP-8.4: soap: Fix const-generic compile warning
2 parents 14f0f86 + ae0bf44 commit bc0871d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

ext/soap/php_encoding.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2524,8 +2524,7 @@ static zval *to_zval_array(zval *ret, encodeTypePtr type, xmlNodePtr data)
25242524
if (data &&
25252525
(attr = get_soap_enc_attribute(data->properties,"arrayType")) &&
25262526
attr->children && attr->children->content) {
2527-
const char *type;
2528-
char *end, *ns;
2527+
char *type, *end, *ns;
25292528
xmlNsPtr nsptr;
25302529

25312530
parse_namespace(attr->children->content, &type, &ns);

0 commit comments

Comments
 (0)