openexr-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Openexr-devel] Non initialized array


From: Michel Lerenard
Subject: [Openexr-devel] Non initialized array
Date: Tue, 22 Nov 2016 15:28:52 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.0

Hi,

while debugging a weird issue (code crashing when embedded in my app and not crashing when standalone), I came across an issue in the DeepOutputScanlineFile class.

The lineSampleCount array is never reset. The code calls
_data->lineSampleCount.resizeErase(_data->maxY - _data->minY + 1);

in initialize(), then in the execute function of the buffer task, we increment the values of the cells, although they have never been set to zero !

_ofd->lineSampleCount[i - _ofd->minY] += _ofd->getSampleCount(j, i);


This buffer is then used when setting a FrameBuffer and some slices are missing, which leads to access violations.
I'm using OpenEXR 2.2.0.



Michel



reply via email to

[Prev in Thread] Current Thread [Next in Thread]