1
0
Fork 0

Improve the reliability of PNG parsing

This commit is contained in:
jvoisin 2019-12-15 06:57:32 -08:00
parent efa525c102
commit be24c681ff
1 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,8 @@ class PNGParser(exiftool.ExiftoolParser):
try: # better fail here than later
cairo.ImageSurface.create_from_png(self.filename)
except MemoryError: # pragma: no cover
except Exception: # pragma: no cover
# Cairo is returning some weird exceptions :/
raise ValueError
def remove_all(self) -> bool: