View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0004182VTK(No Category)public2006-12-08 04:302013-04-05 19:57
Reporterxabi riobe 
Assigned ToLisa Avila 
PrioritylowSeverityminorReproducibilityalways
StatusclosedResolutionfixed 
PlatformOSOS Version
Product Version 
Target VersionFixed in Version 
Summary0004182: memory leak in vtkFixedPointVolumeRayCastMapper
Descriptionthere is a memory leak in vtkFixedPointVolumeRayCastMapper produced in method UpdateMinMaxVolume.

adding the following lines at the end resolve it:
delete minNonZeroScalarIndex;
delete minNonZeroGradientMagnitudeIndex;
TagsNo tags attached.
Project
Type
Attached Files

 Relationships

  Notes
(0006518)
xabi riobe (reporter)
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 (reporter)
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 (developer)
2008-05-06 15:31

Seems to be already fixed but was never closed.

 Issue History
Date Modified Username Field Change
2008-04-14 06:31 Xiang Fan Note Added: 0011274
2008-05-06 15:31 Lisa Avila Status tabled => @80@
2008-05-06 15:31 Lisa Avila Resolution open => fixed
2008-05-06 15:31 Lisa Avila Note Added: 0011724
2011-06-16 13:11 Zack Galbreath Category => (No Category)
2013-04-05 19:57 Berk Geveci Status customer review => closed


Copyright © 2000 - 2018 MantisBT Team