Hello vtk-users,<br><br>FYI: I just submitted a bug, that causes a crash due to buffer overflow.<br><br>There is a missing cast operator in vtkImageAccumulate.cxx line 222.<br>
<br>
The line:<br>
sumSqr[idxC] += (*subPtr * *subPtr);<br>
should be:<br>
sumSqr[idxC] += (static_cast<double>(*subPtr) * (*subPtr));        <br><br>Bug Tracker link:<br><a href="http://public.kitware.com/Bug/view.php?id=10534">http://public.kitware.com/Bug/view.php?id=10534</a><br><br>I hope the fix can be made until VTK 5.6 release. <br>
<br>Best regards!<br>