2019-11-21 05:42:52 +03:00
|
|
|
import unittest
|
|
|
|
|
2016-01-21 01:37:28 +03:00
|
|
|
from PIL import Image
|
|
|
|
|
2019-11-21 05:42:52 +03:00
|
|
|
from .helper import PillowTestCase
|
2019-07-06 23:40:53 +03:00
|
|
|
|
2016-01-21 01:37:28 +03:00
|
|
|
TEST_FILE = "Tests/images/fli_overflow.fli"
|
|
|
|
|
|
|
|
|
|
|
|
class TestFliOverflow(PillowTestCase):
|
|
|
|
def test_fli_overflow(self):
|
|
|
|
|
|
|
|
# this should not crash with a malloc error or access violation
|
2019-11-25 23:03:23 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
im.load()
|
2016-02-05 01:57:13 +03:00
|
|
|
|
2016-01-21 01:37:28 +03:00
|
|
|
|
2019-06-13 18:53:42 +03:00
|
|
|
if __name__ == "__main__":
|
2016-01-21 01:37:28 +03:00
|
|
|
unittest.main()
|