Browse Source

LibGfx/GIF: Shorten the lifetime of lzw_encoded_bytes_expected

Lucas CHOLLET 1 year ago
parent
commit
7aa76e6c9f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Userland/Libraries/LibGfx/ImageFormats/GIFLoader.cpp

+ 3 - 3
Userland/Libraries/LibGfx/ImageFormats/GIFLoader.cpp

@@ -350,10 +350,10 @@ static ErrorOr<void> load_gif_frame_descriptors(GIFLoadingContext& context)
 
 
             image->lzw_min_code_size = TRY(context.stream.read_value<u8>());
             image->lzw_min_code_size = TRY(context.stream.read_value<u8>());
 
 
-            u8 lzw_encoded_bytes_expected = 0;
-
             for (;;) {
             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)
                 if (lzw_encoded_bytes_expected == 0)
                     break;
                     break;