Pillow/Tests/check_fli_overflow.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
262 B
Python
Raw Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
from PIL import Image
TEST_FILE = "Tests/images/fli_overflow.fli"
2024-01-19 13:50:27 +03:00
def test_fli_overflow() -> None:
2020-03-28 04:51:28 +03:00
# this should not crash with a malloc error or access violation
with Image.open(TEST_FILE) as im:
im.load()