Notes |
|
(0006518)
|
xabi riobe
|
2007-02-21 15:57
|
|
more memory leaks in same class, method vtkFixedPointVolumeRayCastMapperComputeCS1CGradients:
dxBuffer, dyBuffer, dzBuffer are created with new and not deleted.
resolve it by adding at the end of tthe method:
delete dxBuffer;
delete dyBuffer;
delete dzBuffer;
|
|
|
(0011274)
|
Xiang Fan
|
2008-04-14 06:31
|
|
vtkFixedPointVolumeRayCastMapper::UpdateMinMaxVolume should call
"
delete []minNonZeroScalarIndex;
delete []minNonZeroGradientMagnitudeIndex;
"
at the end of the function
This bug still exists in VTK 5.0.4 |
|
|
(0011724)
|
Lisa Avila
|
2008-05-06 15:31
|
|
Seems to be already fixed but was never closed. |
|