MantisBT - VTK
View Issue Details
0013163VTK(No Category)public2012-05-11 08:162013-04-05 19:50
JLG 
Berk Geveci 
highminorhave not tried
closedunable to reproduce 
5.8.0 
 
TBD
crash
0013163: Access violation exception when calling vtkRenderer::Render()
The exception occurs on line vtkRenderer.cxx:660:
  for ( i = 0; i < this->PropArrayCount; i++ )
    {
    this->NumberOfPropsRendered +=
      this->PropArray[i]->RenderOverlay(this);
    }
this->PropArrayCount is 2, but this->PropArray is null

It seems that the exception is a result of not resetting PropArrayCount in vtkRenderer::Render(). The lines 362ff in vtkRenderer.cxx are as follows:
  if ( this->PropArray)
    {
    delete [] this->PropArray;
    this->PropArray = NULL;
    }

But PropArrayCount is not set to 0 after this.

The exception occurs on the same object some time after these lines are executed.
No tags attached.
Issue History
2012-05-11 08:16JLGNew Issue
2013-04-05 19:50Berk GeveciAssigned To => Berk Geveci
2013-04-05 19:50Berk GeveciStatusbacklog => tabled
2013-04-05 19:50Berk GeveciResolutionopen => unable to reproduce
2013-04-05 19:50Berk GeveciStatustabled => closed

There are no notes attached to this issue.