I am trying to use valgrind to find some memory leaks. I see several things like this:<br><br>==32112== Conditional jump or move depends on uninitialised value(s)                        <br>==32112==    at 0x8050971: vtkEllipsoidSource::SetMajorAxisLength(double) (vtkEllipsoidSource.h:38)<br>
==32112==    by 0x804C7B9: EllipsoidDemo() (VisualizeEllipsoid.cpp:23)                             <br>==32112==    by 0x804C75E: main (VisualizeEllipsoid.cpp:14)   <br><br>SetMajorAxisLength is created by a set macro:<br>
vtkSetMacro(MajorAxisLength, double);<br><br>and called with:<br>ellipsoid-&gt;SetMajorAxisLength(5.0);<br><br>What is the problem with this?<br><br clear="all">Thanks,<br><br>David<br>