Skip to content

Commit

Permalink
fix php_url_encode_hash_ex call for 8.3 (alpine builds) (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
thecaliskan authored Dec 2, 2023
1 parent 2348cc2 commit a40c33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext-src/php_swoole_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ static sw_inline char *php_swoole_http_build_query(zval *zdata, size_t *length,
} else {
#else
if (HASH_OF(zdata)) {
php_url_encode_hash_ex(HASH_OF(zdata), formstr, NULL, NULL, NULL, NULL, NULL, (int) PHP_QUERY_RFC1738);
php_url_encode_hash_ex(HASH_OF(zdata), formstr, NULL, 0, NULL, NULL, NULL, (int) PHP_QUERY_RFC1738);
} else {
#endif
if (formstr->s) {
Expand Down

0 comments on commit a40c33c

Please sign in to comment.