<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'><div dir='ltr'>
1. When the pipeline created in the stack is detroyed, it detroys the output object within the pipeline. By returning a vtkSmartPointer may be a remedy to this (in which case calling Register(0) is a bug), but I'm not sure without checking the document. I tend not to use vtkSmartPointer in straight C++ code since smart pointer tend to complicate things up and clutters the code.<BR>2. Unpredictable failures tend to be thread related, or to a less extend, lack of memory. You mentioned that the crash does not occur in the threaded code. But it is worthwhile to double check.<br><br>Xiaofeng <BR><div><hr id="stopSpelling">Date: Tue, 6 Sep 2011 10:53:51 -0700<br>Subject: Re: [vtkusers] Help with crashes in VTK<br>From: jonmorra@gmail.com<br>To: xf10036@hotmail.com<br>CC: drescherjm@gmail.com; vtkusers@vtk.org<br><br>Thanks for the response, I was just wondering<div>1. What this is trying to accomplish?</div><div>2. If this would explain the behavior that I'm seeing (where it fails unpredictably)? </div><div><br><div class="ecxgmail_quote">
On Tue, Sep 6, 2011 at 10:50 AM, Xiaofeng Z <span dir="ltr"><<a href="mailto:xf10036@hotmail.com">xf10036@hotmail.com</a>></span> wrote:<br><blockquote style="padding-left: 1ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid;" class="ecxgmail_quote">
<div><div dir="ltr">
<div>Case 3:</div><div class="ecxim"><div> </div><div>vtkSmartPointer<vtkPolyData> vtkPipelines::getContoursAtSlice(vtkSmartPointer<vtkImageData> const &binaryImage, int const slice, EOrientation const inOrientation) {</div>
<div> int* extent = binaryImage->GetExtent();</div><div><br></div><div> vtkSmartPointer<vtkMarchingSquares> marching = vtkSmartPointer<vtkMarchingSquares>::New();</div><div> marching->SetInput(binaryImage);</div>
<div> switch (inOrientation) {</div><div> case eOrientation_XY:</div><div> marching->SetImageRange(extent[0], extent[1], extent[2], extent[3], slice, slice);</div><div> break;</div><div>
case eOrientation_XZ:</div><div> marching->SetImageRange(extent[0], extent[1], slice, slice, extent[4], extent[5]);</div><div> break;</div><div> case eOrientation_YZ:</div><div> marching->SetImageRange(slice, slice, extent[2], extent[3], extent[4], extent[5]);</div>
<div> break;</div><div> }</div><div> marching->SetValue(0, 0.5);</div><div><br></div><div> vtkSmartPointer<vtkStripper> stripper = vtkSmartPointer<vtkStripper>::New();</div><div> stripper->SetInputConnection(marching->GetOutputPort());</div>
<div> stripper->Update();</div><div><br></div><div> return stripper->GetOutput(); // Crash occurs here as update is called (I'm not sure why it's not on the previous line)</div><div>}<br></div><div> </div>
</div><div>Add the following before returning:</div><div> </div><div>vtkSmartPointer<vtkPolyData> poly = stripper->GetOutput();</div><div>poly->Register(0);</div><div>return poly;</div><div> </div><div>See if that helps.</div>
<div><br>Xiaofeng<br> </div><div><hr>Date: Tue, 6 Sep 2011 09:54:51 -0700<br>From: <a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a><br>To: <a href="mailto:drescherjm@gmail.com">drescherjm@gmail.com</a><br>
CC: <a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>Subject: Re: [vtkusers] Help with crashes in VTK<div><div></div><div class="h5"><br><br>Actually, allow me to clarify this.<div>Qt is 4.7.2 as downloaded from their Qt SDK</div>
<div>vtk, gdcm, and my program are all compiled as Release with Debug info<br><br><div>On Sat, Sep 3, 2011 at 9:06 PM, Jonathan Morra <span dir="ltr"><<a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a>></span> wrote:<br>
<blockquote style="padding-left: 1ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid;">Yes, everything is in release.<br><div><div></div><div>
<div>On Sep 3, 2011 7:45 PM, "John Drescher" <<a href="mailto:drescherjm@gmail.com">drescherjm@gmail.com</a>> wrote:<br>> On Sat, Sep 3, 2011 at 6:17 PM, Jonathan Morra <<a href="mailto:jonmorra@gmail.com">jonmorra@gmail.com</a>> wrote:<br>
>> I have an application that is being developed and deployed on Windows<br>>> compiling with Visual Studios 2008 and using Qt 4.7.2. I'm using VTK pulled<br>>> from git on 8/21/2011. I just started to release my application to end<br>
>> users and they are reporting a lot of crashes. I have set up an automated<br>>> crash handling reporter so I can see the stacktraces of crashes that happen<br>>> on users' computers. These are not happening on my machine. Honestly I<br>
>> have no idea what would cause these or how to go about fixing them. My<br>>> application is using QThreads, but these crashes aren't happening in any<br>>> threaded code. Can anyone have a look at these VTK stack traces and point<br>
>> me in some kind of direction for fixing these.<br>>> Thanks<br>>> PS I have a lot more crashes that are very similar to these.<br>>> Crash 1 -- Probable cause vtkSmartPointer<vtkImageData> going out of scope<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x056e2458) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cdf0) Line 522 + 0x8 bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x0e88ee80, void * ptr=0x0eab1848) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x0e88ee80, void * ptr=0x0eab1848, const char * __formal=0x724bccb8)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d458, vtkObjectBase * obj=0x0e88ee80, void * ptr=0x0eab1848,<br>>> const char * desc=0x724bccb8) Line 1069 C++<br>
>> vtkCommon.dll!vtkGarbageCollectorReport<vtkObjectBase>(vtkGarbageCollector<br>>> * collector=0x0018d458, vtkObjectBase * & ptr=, const char *<br>>> desc=0x724bccb8) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformation::ReportAsObjectBase(vtkInformationKey *<br>>> key=0x029b32c0, vtkGarbageCollector * collector=0x0018d458) Line 826 + 0x16<br>>> bytes C++<br>>> vtkCommon.dll!vtkInformationKey::ReportAsObjectBase(vtkInformation *<br>
>> info=0x0e88de90, vtkGarbageCollector * collector=0x0018d458) Line 136 C++<br>>> vtkCommon.dll!vtkInformation::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d458) Line 812 + 0xc bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x056e2340) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cf3c) Line 522 + 0x8 bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x0e88de90, void * ptr=0x053dfb60) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x0e88de90, void * ptr=0x053dfb60, const char * __formal=0x718c055c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d458, vtkObjectBase * obj=0x0e88de90, void * ptr=0x053dfb60,<br>>> const char * desc=0x718c055c) Line 1069 C++<br>
>><br>>> vtkCommon.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d458, vtkInformation * & ptr=, const char *<br>>> desc=0x718c055c) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformationVector::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d458) Line 227 + 0x28 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x056e24c8) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d058) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x0e88fc40, void * ptr=0x0efead98) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x0e88fc40, void * ptr=0x0efead98, const char * __formal=0x724c0f7c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d458, vtkObjectBase * obj=0x0e88fc40, void * ptr=0x0efead98,<br>>> const char * desc=0x724c0f7c) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkInformationVector>(vtkGarbageCollector<br>>> * collector=0x0018d458, vtkInformationVector * & ptr=, const char *<br>>> desc=0x724c0f7c) Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkExecutive::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d458) Line 303 + 0x25 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x056e2500) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d174) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x056f9078, void * ptr=0x0e451eac) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x056f9078, void * ptr=0x0e451eac, const char * __formal=0x724c0cac)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d458, vtkObjectBase * obj=0x056f9078, void * ptr=0x0e451eac,<br>>> const char * desc=0x724c0cac) Line 1069 C++<br>
>> vtkCommon.dll!vtkGarbageCollectorReport<vtkObjectBase>(vtkGarbageCollector<br>>> * collector=0x0018d458, vtkObjectBase * & ptr=, const char *<br>>> desc=0x724c0cac) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkSmartPointerBase::Report(vtkGarbageCollector *<br>>> collector=0x0018d458, const char * desc=0x724c0cac) Line 96 + 0x10 bytes<br>>> C++<br>>> vtkFiltering.dll!vtkInformationExecutivePortKey::Report(vtkInformation *<br>
>> info=0x0e88f998, vtkGarbageCollector * collector=0x0018d458) Line 157 +<br>>> 0x17 bytes C++<br>>> vtkCommon.dll!vtkInformation::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d458) Line 812 + 0xc bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x056e2650) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d2b8) Line 522 + 0x8 bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x0e88f998, void * ptr=0x02ab9db4) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x0e88f998, void * ptr=0x02ab9db4, const char * __formal=0x724bd504)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d458, vtkObjectBase * obj=0x0e88f998, void * ptr=0x02ab9db4,<br>>> const char * desc=0x724bd504) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d458, vtkInformation * & ptr=, const char *<br>>> desc=0x724bd504) Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkDataObject::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d458) Line 1022 + 0xf bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x056e2378) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x718b7c7c) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkCharArray::IsA(const char * type=0x00000000) Line 39 +<br>
>> 0x48 bytes C++<br>>> vtkFiltering.dll!vtkDataObject::UnRegister(vtkObjectBase * o=0x00000000)<br>>> Line 832 C++<br>>> vtkCommon.dll!vtkSmartPointerBase::~vtkSmartPointerBase() Line 64 C++<br>
>> Crash 2 -- Probable cause vtkSmartPointer<vtkActor> going out of scope<br>>><br>>> vtkCommon.dll!vtkGarbageCollectorImpl::SubtractReference(vtkGarbageCollectorImpl::Entry<br>>> * e=0x05466518) Line 795 + 0xd bytes C++<br>
>><br>>> vtkCommon.dll!vtkGarbageCollectorImpl::SubtractExternalReferences(vtkGarbageCollectorImpl::ComponentType<br>>> * c=0x0566ea94) Line 766 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::CollectInternal(vtkObjectBase *<br>
>> root=0x051a8fd8) Line 473 C++<br>>> vtkCommon.dll!vtkGarbageCollector::Collect(vtkObjectBase *<br>>> root=0x051a8fd8) Line 907 C++<br>>> vtkCommon.dll!vtkObjectBase::UnRegisterInternal(vtkObjectBase *<br>
>> __formal=0x05298c38, int check=1) Line 287 + 0x6 bytes C++<br>>> vtkCommon.dll!vtkObject::UnRegisterInternal(vtkObjectBase * o=0x05298c38,<br>>> int check=1) Line 885 + 0x11 bytes C++<br>>> vtkFiltering.dll!vtkAlgorithm::UnRegister(vtkObjectBase * o=0x05298c38)<br>
>> Line 918 C++<br>>> vtkRendering.dll!vtkActor::~vtkActor() Line 77 C++<br>>> vtkRendering.dll!vtkOpenGLActor::`vector deleting destructor'() + 0x46<br>>> bytes C++<br>>> vtkCommon.dll!vtkObjectBase::UnRegisterInternal(vtkObjectBase *<br>
>> __formal=0x00000000, int check=0) Line 279 + 0xb bytes C++<br>>> vtkCommon.dll!vtkObject::UnRegisterInternal(vtkObjectBase * o=0x00000000,<br>>> int check=0) Line 885 + 0x11 bytes C++<br>>> vtkCommon.dll!vtkObjectBase::UnRegister(vtkObjectBase * o=0x00000000)<br>
>> Line 183 C++<br>>> vtkCommon.dll!vtkSmartPointerBase::~vtkSmartPointerBase() Line 64 C++<br>>> Crash 3 -- Occurred during pipeline composed of vtkMarchingSquares and<br>>> vtkStripper<br>>> vtkCommon.dll!vtksys::hashtable<std::pair<vtkInformationKey *<br>
>> const,vtkObjectBase *>,vtkInformationKey<br>>> *,vtkInformationInternals::HashFun,vtksys::hash_select1st<vtkInformationKey<br>>> * const,vtkObjectBase *>,std::equal_to<vtkInformationKey<br>
>> *>,std::allocator<char> >::find(vtkInformationKey * const &<br>>> __key=0x029a2f70) Line 729 + 0x14 bytes C++<br>>> vtkCommon.dll!vtkInformation::GetAsObjectBase(vtkInformationKey *<br>
>> key=0x029a2f70) Line 167 C++<br>>> vtkCommon.dll!vtkInformationKey::GetAsObjectBase(vtkInformation *<br>>> info=0x050a38e0) Line 94 C++<br>>> vtkFiltering.dll!vtkInformationExecutivePortKey::Get(vtkInformation *<br>
>> info=0x050a38e0, vtkExecutive * & executive=0x052aca90, int &<br>>> port=339042768) Line 91 C++<br>>><br>>> vtkFiltering.dll!vtkDemandDrivenPipeline::ComputePipelineMTime(vtkInformation<br>
>> * request=0x00000000, vtkInformationVector * * inInfoVec=0x052aca90,<br>>> vtkInformationVector * outInfoVec=0x143561d0, int requestFromOutputPort=0,<br>>> unsigned long * mtime=0x0018d3f0) Line 137 C++<br>
>><br>>> vtkFiltering.dll!vtkDemandDrivenPipeline::ComputePipelineMTime(vtkInformation<br>>> * request=0x00000000, vtkInformationVector * * inInfoVec=0x05420658,<br>>> vtkInformationVector * outInfoVec=0x00000000, int requestFromOutputPort=0,<br>
>> unsigned long * mtime=0x0018d430) Line 143 + 0x2c bytes C++<br>>> vtkFiltering.dll!vtkDemandDrivenPipeline::UpdatePipelineMTime() Line 346<br>>> + 0x22 bytes C++<br>>> vtkFiltering.dll!vtkDemandDrivenPipeline::UpdateDataObject() Line 360 +<br>
>> 0xc bytes C++<br>>> vtkFiltering.dll!vtkDemandDrivenPipeline::UpdateInformation() Line 392 +<br>>> 0xc bytes C++<br>>> vtkFiltering.dll!vtkStreamingDemandDrivenPipeline::Update(int port=0)<br>
>> Line 311 + 0xa bytes C++<br>>> vtkFiltering.dll!vtkExecutive::Update() Line 317 + 0x2 bytes C++<br>>> Crash 4 --Occurred during pipeline composed of vtkMarchingSquares and<br>>> vtkStripper<br>
>> 8bcccccc()<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x14177f08) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>
>> obj=0x0018c9dc) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142e51c8, void * ptr=0x13fe0180) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x142e51c8, void * ptr=0x13fe0180, const char * __formal=0x7174055c)<br>>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x142e51c8, void * ptr=0x13fe0180,<br>
>> const char * desc=0x7174055c) Line 1069 C++<br>>><br>>> vtkCommon.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkInformation * & ptr=, const char *<br>
>> desc=0x7174055c) Line 201 + 0x17 bytes C++<br>>> vtkCommon.dll!vtkInformationVector::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 227 + 0x28 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x14177e28) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018caf8) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x142eb640, void * ptr=0x142367a8) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142eb640, void * ptr=0x142367a8, const char * __formal=0x713dccb8)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x142eb640, void * ptr=0x142367a8,<br>>> const char * desc=0x713dccb8) Line 1069 C++<br>
>> vtkCommon.dll!vtkGarbageCollectorReport<vtkObjectBase>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkObjectBase * & ptr=, const char *<br>>> desc=0x713dccb8) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformation::ReportAsObjectBase(vtkInformationKey *<br>>> key=0x028d33b0, vtkGarbageCollector * collector=0x0018d38c) Line 826 + 0x16<br>>> bytes C++<br>>> vtkCommon.dll!vtkInformationKey::ReportAsObjectBase(vtkInformation *<br>
>> info=0x142e6640, vtkGarbageCollector * collector=0x0018d38c) Line 136 C++<br>>> vtkCommon.dll!vtkInformation::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 812 + 0xc bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x14177d48) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cc44) Line 522 + 0x8 bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142e6640, void * ptr=0x13fe0950) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142e6640, void * ptr=0x13fe0950, const char * __formal=0x7174055c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x142e6640, void * ptr=0x13fe0950,<br>>> const char * desc=0x7174055c) Line 1069 C++<br>
>><br>>> vtkCommon.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkInformation * & ptr=, const char *<br>>> desc=0x7174055c) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformationVector::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 227 + 0x28 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x14177df0) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cd60) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x142e4f20, void * ptr=0x142371f0) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142e4f20, void * ptr=0x142371f0, const char * __formal=0x713e0f7c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x142e4f20, void * ptr=0x142371f0,<br>>> const char * desc=0x713e0f7c) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkInformationVector>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkInformationVector * & ptr=, const char *<br>>> desc=0x713e0f7c) Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkExecutive::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 303 + 0x25 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x141782f8) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018ce7c) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x04c7ae58, void * ptr=0x1478cc14) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x04c7ae58, void * ptr=0x1478cc14, const char * __formal=0x713e0cac)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x04c7ae58, void * ptr=0x1478cc14,<br>>> const char * desc=0x713e0cac) Line 1069 C++<br>
>> vtkCommon.dll!vtkGarbageCollectorReport<vtkObjectBase>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkObjectBase * & ptr=, const char *<br>>> desc=0x713e0cac) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkSmartPointerBase::Report(vtkGarbageCollector *<br>>> collector=0x0018d38c, const char * desc=0x713e0cac) Line 96 + 0x10 bytes<br>>> C++<br>>> vtkFiltering.dll!vtkInformationExecutivePortKey::Report(vtkInformation *<br>
>> info=0x142eadd0, vtkGarbageCollector * collector=0x0018d38c) Line 157 +<br>>> 0x17 bytes C++<br>>> vtkCommon.dll!vtkInformation::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 812 + 0xc bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x14177f40) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cfc0) Line 522 + 0x8 bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142eadd0, void * ptr=0x13fe2000) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142eadd0, void * ptr=0x13fe2000, const char * __formal=0x7174055c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x142eadd0, void * ptr=0x13fe2000,<br>>> const char * desc=0x7174055c) Line 1069 C++<br>
>><br>>> vtkCommon.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkInformation * & ptr=, const char *<br>>> desc=0x7174055c) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformationVector::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 227 + 0x28 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x14177ed0) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d0dc) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x142da6e0, void * ptr=0x13fe0550) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x142da6e0, void * ptr=0x13fe0550, const char * __formal=0x713e0f7c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x142da6e0, void * ptr=0x13fe0550,<br>>> const char * desc=0x713e0f7c) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkInformationVector>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkInformationVector * & ptr=, const char *<br>>> desc=0x713e0f7c) Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkExecutive::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 303 + 0x25 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x14178058) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d1f8) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x04c7a7f8, void * ptr=0x0503035c) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x04c7a7f8, void * ptr=0x0503035c, const char * __formal=0x713d76d4)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d38c, vtkObjectBase * obj=0x04c7a7f8, void * ptr=0x0503035c,<br>>> const char * desc=0x713d76d4) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkExecutive>(vtkGarbageCollector<br>>> * collector=0x0018d38c, vtkExecutive * & ptr=, const char * desc=0x713d76d4)<br>>> Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkAlgorithm::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d38c) Line 924 + 0xf bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x14178020) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x1450ecc0) Line 522 + 0x8 bytes C++<br>>><br>>> vtkFiltering.dll!vtkStreamingDemandDrivenPipeline::ProcessRequest(vtkInformation<br>
>> * request=0x00000000, vtkInformationVector * * inInfoVec=0x00000001,<br>>> vtkInformationVector * outInfoVec=0x71628b17) Line 287 + 0xe bytes C++<br>>> vtkFiltering.dll!vtkAlgorithm::UnRegister(vtkObjectBase * o=0x82ce006a)<br>
>> Line 918 C++<br>>> Crash 5 -- Occurred during SetInput of vtkMarchingSquares<br>>> vtkFiltering.dll!std::vector<vtkExecutive *,std::allocator<vtkExecutive *><br>>>>::insert(std::_Vector_const_iterator<vtkExecutive<br>
>> *,std::allocator<vtkExecutive *> > _Where=..., vtkExecutive * const &<br>>> _Val=0x14af6568) Line 878 + 0x43 bytes C++<br>>> vtkFiltering.dll!std::vector<vtkExecutive *,std::allocator<vtkExecutive *><br>
>>>::push_back(vtkExecutive * const & _Val=0x14af6568) Line 823 + 0x1f bytes<br>>> C++<br>>><br>>> vtkFiltering.dll!vtkInformationExecutivePortVectorKey::Append(vtkInformation<br>>> * info=0x0518ca18, vtkExecutive * executive=0x14af6568, int port=0) Line 97<br>
>> C++<br>>> vtkFiltering.dll!vtkAlgorithm::SetInputConnection(int port=0,<br>>> vtkAlgorithmOutput * input=0x14af6568) Line 1004 C++<br>>> vtkFiltering.dll!vtkPolyDataAlgorithm::SetInput(int index=0, vtkDataObject<br>
>> * input=0x04c24138) Line 218 + 0x1a bytes C++<br>>> vtkFiltering.dll!vtkPolyDataAlgorithm::SetInput(vtkDataObject *<br>>> input=0x04c24138) Line 211 C++<br>>> Crash 6 -- Probable cause vtkSmartPointer<vtkActor> going out of scope<br>
>> e84d8b50()<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x02898e98) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>
>> obj=0x0018d220) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x056d07f0, void * ptr=0x053b9568) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x056d07f0, void * ptr=0x053b9568, const char * __formal=0x71452158)<br>>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d50c, vtkObjectBase * obj=0x056d07f0, void * ptr=0x053b9568,<br>
>> const char * desc=0x71452158) Line 1069 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReport<vtkObjectBase>(vtkGarbageCollector<br>>> * collector=0x0018d50c, vtkObjectBase * & ptr=, const char *<br>
>> desc=0x71452158) Line 201 + 0x17 bytes C++<br>>> vtkCommon.dll!vtkInformation::ReportAsObjectBase(vtkInformationKey *<br>>> key=0x02933150, vtkGarbageCollector * collector=0x0018d50c) Line 826 + 0x16<br>
>> bytes C++<br>>> vtkCommon.dll!vtkInformationKey::ReportAsObjectBase(vtkInformation *<br>>> info=0x051583f8, vtkGarbageCollector * collector=0x0018d50c) Line 136 C++<br>>> vtkCommon.dll!vtkInformation::ReportReferences(vtkGarbageCollector *<br>
>> collector=0x0018d50c) Line 812 + 0xc bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x02898fe8) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>
>> obj=0x0018d36c) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x051583f8, void * ptr=0x02a3a13c) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x051583f8, void * ptr=0x02a3a13c, const char * __formal=0x7143d504)<br>>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d50c, vtkObjectBase * obj=0x051583f8, void * ptr=0x02a3a13c,<br>
>> const char * desc=0x7143d504) Line 1069 C++<br>>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d50c, vtkInformation * & ptr=, const char *<br>
>> desc=0x7143d504) Line 201 + 0x18 bytes C++<br>>> vtkFiltering.dll!vtkDataObject::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d50c) Line 1022 + 0xf bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x028990c8) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d5fc) Line 522 + 0x8 bytes C++<br>>> vtkFiltering.dll!vtkFieldData::~vtkFieldData() Line 213 + 0x10 bytes C++<br>
>> vtkCommon.dll!vtkObject::UnRegisterInternal(vtkObjectBase * o=0x02a3a110,<br>>> int check=43210112) Line 885 + 0x11 bytes C++<br>>> vtkCommon.dll!vtkObjectBase::UnRegisterInternal(vtkObjectBase *<br>
>> __formal=0x00000000, int check=1) Line 287 + 0x6 bytes C++<br>>> vtkFiltering.dll!vtkDataObject::UnRegister(vtkObjectBase * o=0x00000000)<br>>> Line 832 C++<br>>> vtkCommon.dll!vtkSmartPointerBase::~vtkSmartPointerBase() Line 64 C++<br>
>> Crash 7 -- Occurred during execution of pipeline composed of<br>>> vtkMarchingSquares and vtkStripper<br>>> 4d8dcccc()<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x02a93080) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cb98) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x14b7e828, void * ptr=0x14bef4c8) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x14b7e828, void * ptr=0x14bef4c8, const char * __formal=0x7143ccb8)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d42c, vtkObjectBase * obj=0x14b7e828, void * ptr=0x14bef4c8,<br>>> const char * desc=0x7143ccb8) Line 1069 C++<br>
>> vtkCommon.dll!vtkGarbageCollectorReport<vtkObjectBase>(vtkGarbageCollector<br>>> * collector=0x0018d42c, vtkObjectBase * & ptr=, const char *<br>>> desc=0x7143ccb8) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformation::ReportAsObjectBase(vtkInformationKey *<br>>> key=0x028f3398, vtkGarbageCollector * collector=0x0018d42c) Line 826 + 0x16<br>>> bytes C++<br>>> vtkCommon.dll!vtkInformationKey::ReportAsObjectBase(vtkInformation *<br>
>> info=0x14b7ed78, vtkGarbageCollector * collector=0x0018d42c) Line 136 C++<br>>> vtkCommon.dll!vtkInformation::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d42c) Line 812 + 0xc bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x02a92c58) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cce4) Line 522 + 0x8 bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x14b7ed78, void * ptr=0x0522d408) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x14b7ed78, void * ptr=0x0522d408, const char * __formal=0x702b055c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d42c, vtkObjectBase * obj=0x14b7ed78, void * ptr=0x0522d408,<br>>> const char * desc=0x702b055c) Line 1069 C++<br>
>><br>>> vtkCommon.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d42c, vtkInformation * & ptr=, const char *<br>>> desc=0x702b055c) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformationVector::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d42c) Line 227 + 0x28 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x02a93588) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018ce00) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x14b7e080, void * ptr=0x14bf0090) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x14b7e080, void * ptr=0x14bf0090, const char * __formal=0x71440f7c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d42c, vtkObjectBase * obj=0x14b7e080, void * ptr=0x14bf0090,<br>>> const char * desc=0x71440f7c) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkInformationVector>(vtkGarbageCollector<br>>> * collector=0x0018d42c, vtkInformationVector * & ptr=, const char *<br>>> desc=0x71440f7c) Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkExecutive::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d42c) Line 303 + 0x25 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x02a93438) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018cf1c) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x050efb90, void * ptr=0x04f1b2b4) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x050efb90, void * ptr=0x04f1b2b4, const char * __formal=0x71440cac)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d42c, vtkObjectBase * obj=0x050efb90, void * ptr=0x04f1b2b4,<br>>> const char * desc=0x71440cac) Line 1069 C++<br>
>> vtkCommon.dll!vtkGarbageCollectorReport<vtkObjectBase>(vtkGarbageCollector<br>>> * collector=0x0018d42c, vtkObjectBase * & ptr=, const char *<br>>> desc=0x71440cac) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkSmartPointerBase::Report(vtkGarbageCollector *<br>>> collector=0x0018d42c, const char * desc=0x71440cac) Line 96 + 0x10 bytes<br>>> C++<br>>> vtkFiltering.dll!vtkInformationExecutivePortKey::Report(vtkInformation *<br>
>> info=0x14b7b268, vtkGarbageCollector * collector=0x0018d42c) Line 157 +<br>>> 0x17 bytes C++<br>>> vtkCommon.dll!vtkInformation::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d42c) Line 812 + 0xc bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>>> obj=0x02a92b40) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d060) Line 522 + 0x8 bytes C++<br>
>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x14b7b268, void * ptr=0x0517db60) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x14b7b268, void * ptr=0x0517db60, const char * __formal=0x702b055c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d42c, vtkObjectBase * obj=0x14b7b268, void * ptr=0x0517db60,<br>>> const char * desc=0x702b055c) Line 1069 C++<br>
>><br>>> vtkCommon.dll!vtkGarbageCollectorReport<vtkInformation>(vtkGarbageCollector<br>>> * collector=0x0018d42c, vtkInformation * & ptr=, const char *<br>>> desc=0x702b055c) Line 201 + 0x17 bytes C++<br>
>> vtkCommon.dll!vtkInformationVector::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d42c) Line 227 + 0x28 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x02a92f68) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d17c) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x04fe14d0, void * ptr=0x0517d590) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x04fe14d0, void * ptr=0x0517d590, const char * __formal=0x71440f7c)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d42c, vtkObjectBase * obj=0x04fe14d0, void * ptr=0x0517d590,<br>>> const char * desc=0x71440f7c) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkInformationVector>(vtkGarbageCollector<br>>> * collector=0x0018d42c, vtkInformationVector * & ptr=, const char *<br>>> desc=0x71440f7c) Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkExecutive::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d42c) Line 303 + 0x25 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x02a930f0) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x0018d298) Line 522 + 0x8 bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>
>> obj=0x050efc50, void * ptr=0x02a1f3ec) Line 639 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::Report(vtkObjectBase *<br>>> obj=0x050efc50, void * ptr=0x02a1f3ec, const char * __formal=0x714376d4)<br>
>> Line 602 C++<br>>> vtkCommon.dll!vtkGarbageCollectorReportInternal(vtkGarbageCollector *<br>>> collector=0x0018d42c, vtkObjectBase * obj=0x050efc50, void * ptr=0x02a1f3ec,<br>>> const char * desc=0x714376d4) Line 1069 C++<br>
>><br>>> vtkFiltering.dll!vtkGarbageCollectorReport<vtkExecutive>(vtkGarbageCollector<br>>> * collector=0x0018d42c, vtkExecutive * & ptr=, const char * desc=0x714376d4)<br>>> Line 201 + 0x18 bytes C++<br>
>> vtkFiltering.dll!vtkAlgorithm::ReportReferences(vtkGarbageCollector *<br>>> collector=0x0018d42c) Line 924 + 0xf bytes C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::VisitTarjan(vtkObjectBase *<br>
>> obj=0x02a93898) Line 552 C++<br>>> vtkCommon.dll!vtkGarbageCollectorImpl::MaybeVisit(vtkObjectBase *<br>>> obj=0x051e3960) Line 522 + 0x8 bytes C++<br>>><br>>> vtkFiltering.dll!vtkStreamingDemandDrivenPipeline::ProcessRequest(vtkInformation<br>
>> * request=0x02a1f3b8, vtkInformationVector * * inInfoVec=0x70073273,<br>>> vtkInformationVector * outInfoVec=0x02a1f3b8) Line 287 + 0xe bytes C++<br>>> vtkCommon.dll!vtkObjectBase::UnRegisterInternal(vtkObjectBase *<br>
>> __formal=0x00000000, int check=1) Line 287 + 0x6 bytes C++<br>>> vtkFiltering.dll!vtkAlgorithm::UnRegister(vtkObjectBase * o=0x00000000)<br>>> Line 918 C++<br>>> vtkCommon.dll!vtkSmartPointerBase::~vtkSmartPointerBase() Line 64 C++<br>
>><br>> <br>> Is every part of your application compiled for release? Remember in<br>> Visual Studio you can not mix debug and release so all parts have to<br>> use Release or Debug not a mix of the two.<br>
> <br>> John<br></div>
</div></div></blockquote></div><br></div>
<br></div></div>_______________________________________________
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a>
Follow this link to subscribe/unsubscribe:
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a></div>                                            </div></div>
</blockquote></div><br></div></div>                                            </div></body>
</html>