LibGfx/GIF: Shorten the lifetime of lzw_encoded_bytes_expected

This commit is contained in:
Lucas CHOLLET 2024-05-08 09:27:32 -04:00 committed by Andreas Kling
parent 4fd7d58c51
commit 7aa76e6c9f

View file

@ -350,10 +350,10 @@ static ErrorOr<void> load_gif_frame_descriptors(GIFLoadingContext& context)
image->lzw_min_code_size = TRY(context.stream.read_value<u8>());
u8 lzw_encoded_bytes_expected = 0;
for (;;) {
lzw_encoded_bytes_expected = TRY(context.stream.read_value<u8>());
auto const lzw_encoded_bytes_expected = TRY(context.stream.read_value<u8>());
// Block terminator
if (lzw_encoded_bytes_expected == 0)
break;