1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:17:45 +00:00

LibIMAP: Propagate OOM errors from decode_quoted_printable()

This commit is contained in:
Linus Groh 2023-03-09 14:47:45 +00:00
parent 7d412983a8
commit f068ddb79f
5 changed files with 12 additions and 12 deletions

View file

@ -10,6 +10,6 @@
namespace IMAP {
ByteBuffer decode_quoted_printable(StringView);
ErrorOr<ByteBuffer> decode_quoted_printable(StringView);
}