min command length

This commit is contained in:
Oleg Korshul
2017-06-30 17:30:03 +03:00
parent 8c7515443a
commit c1e5e33691

View File

@ -1205,6 +1205,9 @@ namespace NSDoctRenderer
bool ExecuteCommand(const std::wstring& command)
{
if (command.length() < 7) // minimum command (!!!)
return true;
Init();
if (-1 == m_nFileType)