afichet / openexr-viewer

Simple viewer for OpenEXR files with detailed metadata display
BSD 3-Clause "New" or "Revised" License
92 stars 6 forks source link

Fix segfault #44

Closed afichet closed 8 months ago

afichet commented 8 months ago

When the total memory required to store the whole image exceeds the upper int limit, in many places, there is memory violation #43.

This PR prevent this issue by performing an early check on the required memory size prior to allocation and access. Future revision shall handle such files by using larger types.