Fix issue reported by coverity

This commit is contained in:
heckflosse 2018-11-16 21:49:46 +01:00
parent 1fa253ba63
commit d66d8ce320

View File

@ -231,7 +231,7 @@ void ImProcFunctions::Lanczos (const LabImage* src, LabImage* dst, float scale)
float* const la = aligned_buffer_la.data;
float* const lb = aligned_buffer_lb.data;
// weights for interpolation in y direction
float w[support] ALIGNED64;
float w[support] ALIGNED64 = {};
// Phase 2: do actual interpolation
#ifdef _OPENMP