mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:37:45 +00:00
Everywhere: Use OOM-safe ByteBuffer APIs where possible
If we can easily communicate failure, let's avoid asserting and report failure instead.
This commit is contained in:
parent
6606993432
commit
3a9f00c59b
22 changed files with 135 additions and 67 deletions
|
@ -35,7 +35,10 @@ ByteBuffer decode_pem(ReadonlyBytes data)
|
|||
break;
|
||||
}
|
||||
auto b64decoded = decode_base64(lexer.consume_line().trim_whitespace(TrimMode::Right));
|
||||
decoded.append(b64decoded.data(), b64decoded.size());
|
||||
if (!decoded.try_append(b64decoded.data(), b64decoded.size())) {
|
||||
dbgln("Failed to decode PEM, likely OOM condition");
|
||||
return {};
|
||||
}
|
||||
break;
|
||||
}
|
||||
case Ended:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue