<div dir="ltr">The assignment operator works by increasing the ref count of the object pointed to. But the object returned from the raw New has a ref count on it already, so combining it with the assignment operator results in a ref count of 2. If you use the raw New you have to save its value in a local non-smart-pointer variable and then Delete it when you are done with it. (That&#39;s the whole reason for having a smart pointer specific New method is to avoid that hassle.)<br>
<br><div>Does that make sense?</div><div><br></div><div>David</div><div><br></div><div><br><div class="gmail_quote">On Tue, Oct 7, 2008 at 10:58 AM, pjtr hahn <span dir="ltr">&lt;<a href="mailto:pjtr.hahn@googlemail.com">pjtr.hahn@googlemail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hmm, Ok I didn&#39;t knew the usage you show in your example but<br>
netherless the docs have an assignment operator that should work as I<br>
expected, or am I wrong?<br>
<br>
vtkSmartPointer &amp; operator= (T *r)<br>
<br>
<br>
Thanks so far for your hint and example.<br>
<br>
<br>
<br>
2008/10/7 David Cole &lt;<a href="mailto:david.cole@kitware.com">david.cole@kitware.com</a>&gt;:<br>
<div><div></div><div class="Wj3C7c">&gt; I am not sure why that worked before...... It should have given you a memory<br>
&gt; leak before. Maybe you didn&#39;t really have leak detection turned on before?<br>
&gt; The correct New construct to use with vtkSmartPointer is:<br>
&gt; &nbsp; vtkSmartPointer&lt;vtkSomeObject&gt; ptr<br>
&gt; = vtkSmartPointer&lt;vtkSomeObject&gt;::New();<br>
&gt; HTH,<br>
&gt; David<br>
&gt;<br>
&gt; On Tue, Oct 7, 2008 at 9:39 AM, pjtr hahn &lt;<a href="mailto:pjtr.hahn@googlemail.com">pjtr.hahn@googlemail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hello,<br>
&gt;&gt;<br>
&gt;&gt; since my last CVS Update (today) &nbsp;vtkSmartPointer isn&#39;t working like<br>
&gt;&gt; expected anymore.<br>
&gt;&gt;<br>
&gt;&gt; While code like<br>
&gt;&gt;<br>
&gt;&gt; function_scope{<br>
&gt;&gt;<br>
&gt;&gt; vtkSomeObject * ptr = vtkSomeObjekt::New();<br>
&gt;&gt;<br>
&gt;&gt; ...... more code ......<br>
&gt;&gt;<br>
&gt;&gt; ptr-&gt;Delete();<br>
&gt;&gt;<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; works I get memory leak error messages when changing the same code to<br>
&gt;&gt;<br>
&gt;&gt; function_scope{<br>
&gt;&gt;<br>
&gt;&gt; vtkSmartPointer&lt; vtkSomeObject &gt; ptr = vtkSomeObjekt::New();<br>
&gt;&gt;<br>
&gt;&gt; ...... more code ......<br>
&gt;&gt;<br>
&gt;&gt; } // end scope<br>
&gt;&gt;<br>
&gt;&gt; This worked before.<br>
&gt;&gt;<br>
&gt;&gt; I&#39;m on Vista / Visual Studio Express 2008<br>
&gt;&gt;<br>
&gt;&gt; regards,<br>
&gt;&gt;<br>
&gt;&gt; Peter<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; This is the private VTK discussion list.<br>
&gt;&gt; Please keep messages on-topic. Check the FAQ at:<br>
&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
&gt;<br>
_______________________________________________<br>
This is the private VTK discussion list.<br>
Please keep messages on-topic. Check the FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</div></div></blockquote></div><br></div></div>