Fix for UnboundLocalError with corrupt jpeg2k file

This commit is contained in:
wiredfool 2016-03-26 13:41:00 -07:00
parent 34c80ef642
commit 43b4b8d664
3 changed files with 17 additions and 1 deletions

View File

@ -84,7 +84,8 @@ def _parse_jp2_header(fp):
size = None
mode = None
bpc = None
nc = None
hio = io.BytesIO(header)
while True:
lbox, tbox = struct.unpack('>I4s', hio.read(8))
@ -141,6 +142,9 @@ def _parse_jp2_header(fp):
mode = 'RGBA'
break
if size is None or mode is None:
raise SyntaxError("Malformed jp2 header")
return (size, mode)
##

Binary file not shown.

View File

@ -170,6 +170,18 @@ class TestFileJpeg2k(PillowTestCase):
im = self.roundtrip(jp2)
self.assert_image_equal(im, jp2)
def test_unbound_local(self):
# prepatch, a malformed jp2 file could cause an UnboundLocalError
# exception.
try:
jp2 = Image.open('Tests/images/unbound_variable.jp2')
self.assertTrue(False, 'Expecting an exception')
except SyntaxError as err:
self.assertTrue(True, 'Expecting a syntax error')
except IOError as err:
self.assertTrue(True, 'Expecting an IO error')
except UnboundLocalError as err:
self.assertTrue(False, "Prepatch error")
if __name__ == '__main__':
unittest.main()