Fix GHSA-4w77-75f9-2c8w

This commit is contained in:
Niels Dossche 2024-11-09 15:29:52 +01:00 committed by Jakub Zelenka
parent f3ade203d7
commit f18d429b20
No known key found for this signature in database
GPG key ID: 1C0779DC5C0A9DE4
2 changed files with 43 additions and 0 deletions

View file

@ -1944,6 +1944,8 @@ static void php_cli_server_client_populate_request_info(const php_cli_server_cli
request_info->auth_user = request_info->auth_password = request_info->auth_digest = NULL;
if (NULL != (val = zend_hash_str_find(&client->request.headers, "content-type", sizeof("content-type")-1))) {
request_info->content_type = Z_STRVAL_P(val);
} else {
request_info->content_type = NULL;
}
} /* }}} */