Commit 6bd973e6 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov
parent 10cafe7b
...@@ -637,9 +637,13 @@ namespace NSDoctRenderer ...@@ -637,9 +637,13 @@ namespace NSDoctRenderer
} }
// images in changes // images in changes
for (std::map<std::wstring, bool>::const_iterator iter = pNative->m_mapImagesInChanges.begin(); iter != pNative->m_mapImagesInChanges.end(); iter++) if (NULL != pNative)
{ {
m_arImagesInChanges.push_back(iter->first); for (std::map<std::wstring, bool>::const_iterator iter = pNative->m_mapImagesInChanges.begin();
iter != pNative->m_mapImagesInChanges.end(); iter++)
{
m_arImagesInChanges.push_back(iter->first);
}
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment