Files
ladybird/Libraries/LibGfx
Ben Wiederhake aec8983819 LibGfx: Accept BMP RLE of 255 repeated bytes
Previously, in the case of RLE4, parsing took suspiciously long.
What happened was that 'pixel_count' was 255, and 'i' was incremented
by *two* in each iteration, so the for-loop continued until the
entire output buffer was full, and then rejected the RLE data
as bogus.

This little diff allows pixel_count to reach 256, be greater than
pixel_count, and thus terminate the loop in the intended way.
2020-12-02 22:51:05 +01:00
..
2020-12-02 10:46:40 +01:00
2020-11-22 16:07:00 +01:00
2020-11-22 16:07:00 +01:00
2020-11-22 16:07:00 +01:00
2020-10-26 18:55:36 +01:00
2020-07-25 02:13:43 +02:00
2020-10-12 20:04:48 +02:00