mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			380 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			380 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import unittest
 | 
						|
 | 
						|
from PIL import Image
 | 
						|
 | 
						|
from .helper import PillowTestCase
 | 
						|
 | 
						|
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
 | 
						|
        with Image.open(TEST_FILE) as im:
 | 
						|
            im.load()
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    unittest.main()
 |