Skip to content
Snippets Groups Projects
Commit e3197161 authored by Sean McBride's avatar Sean McBride
Browse files

Fixed null deref found by clang analyzer

Change-Id: I753af97065c413eaee8bdaf604f521cf6bb8933a
parent 5470f390
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ void vtkInputStream::StartReading()
if(!this->Stream)
{
vtkErrorMacro("StartReading() called with no Stream set.");
return;
}
this->StreamStartPosition = this->Stream->tellg();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment