diff options
Diffstat (limited to 'Userland/Libraries/LibGfx/JPGLoader.cpp')
-rw-r--r-- | Userland/Libraries/LibGfx/JPGLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/JPGLoader.cpp b/Userland/Libraries/LibGfx/JPGLoader.cpp index 8f67d4f746..3fe1d8f297 100644 --- a/Userland/Libraries/LibGfx/JPGLoader.cpp +++ b/Userland/Libraries/LibGfx/JPGLoader.cpp @@ -1202,7 +1202,7 @@ static ErrorOr<void> scan_huffman_stream(AK::SeekableStream& stream, JPGLoadingC static ErrorOr<void> decode_header(JPGLoadingContext& context) { if (context.state < JPGLoadingContext::State::HeaderDecoded) { - context.stream = TRY(FixedMemoryStream::construct({ context.data, context.data_size })); + context.stream = TRY(try_make<FixedMemoryStream>(ReadonlyBytes { context.data, context.data_size })); if (auto result = parse_header(*context.stream, context); result.is_error()) { context.state = JPGLoadingContext::State::Error; |