Skip to content
Snippets Groups Projects
Commit 26bd2ced authored by Julien Michel's avatar Julien Michel
Browse files

COV: Fixing coverity issue 1221686 (Unchecked dynamic_cast)

parent f62df7e4
No related branches found
No related tags found
No related merge requests found
......@@ -452,9 +452,14 @@ ImageFileReader<TOutputImage, ConvertPixelTraits>
if (strcmp(this->m_ImageIO->GetNameOfClass(), "TileMapImageIO") == 0)
{
typename TileMapImageIO::Pointer imageIO = dynamic_cast<TileMapImageIO*>(this->GetImageIO());
std::ostringstream depth;
depth << imageIO->GetDepth();
otb_kwl.AddKey("depth", depth.str());
// imageIO should not be null, but we would better check for it
if(imageIO)
{
std::ostringstream depth;
depth << imageIO->GetDepth();
otb_kwl.AddKey("depth", depth.str());
}
}
otbMsgDevMacro(<< otb_kwl);
......
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