Fix segfaults when processing very large files in queue, #5170

This commit is contained in:
heckflosse
2019-02-13 00:38:11 +01:00
parent 2d167d923b
commit 8eba1c40a6
3 changed files with 13 additions and 14 deletions

View File

@@ -25,7 +25,7 @@ namespace rtengine
class LabImage
{
private:
void allocLab(int w, int h);
void allocLab(size_t w, size_t h);
public:
int W, H;