mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 14:13:15 +08:00
Null Pointer check in vizimpl.cpp
Should fix #4191 (http://code.opencv.org/issues/4191)
This commit is contained in:
parent
b27467d9f9
commit
cca78e0601
@ -85,7 +85,7 @@ void cv::viz::Viz3d::VizImpl::TimerCallback::Execute(vtkObject* caller, unsigned
|
||||
|
||||
void cv::viz::Viz3d::VizImpl::ExitCallback::Execute(vtkObject*, unsigned long event_id, void*)
|
||||
{
|
||||
if (event_id == vtkCommand::ExitEvent)
|
||||
if (event_id == vtkCommand::ExitEvent && viz->interactor_)
|
||||
{
|
||||
viz->interactor_->TerminateApp();
|
||||
viz->interactor_ = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user