Pillow/Tests/check_fli_overflow.py
2020-03-28 12:51:28 +11:00

11 lines
219 B
Python

from PIL import Image
TEST_FILE = "Tests/images/fli_overflow.fli"
def test_fli_overflow():
# this should not crash with a malloc error or access violation
with Image.open(TEST_FILE) as im:
im.load()