mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 07:22:21 +00:00
LibWeb: Fix SRI handling of badly-formatted strings
This commit is contained in:
parent
0da7441b9b
commit
39dae6fb2d
Notes:
github-actions[bot]
2025-05-06 17:03:57 +00:00
Author: https://github.com/teromene 🔰
Commit: 39dae6fb2d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4624
Reviewed-by: https://github.com/trflynn89
3 changed files with 18 additions and 1 deletions
|
@ -90,7 +90,7 @@ ErrorOr<Vector<Metadata>> parse_metadata(StringView metadata)
|
|||
auto algorithm = hash_expr_token_list[0];
|
||||
|
||||
// 6. If hash-expr-token-list[1] exists, set base64-value to hash-expr-token-list[1].
|
||||
if (hash_expr_token_list.size() >= 1)
|
||||
if (hash_expr_token_list.size() > 1)
|
||||
base64_value = hash_expr_token_list[1];
|
||||
|
||||
// 7. If algorithm is not a hash function recognized by the user agent, continue.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue