Fix a potential crash in ExternalCommandListener::CommandPipeThread

refs #6589
This commit is contained in:
Gunnar Beutner 2014-08-20 23:35:11 +02:00
parent 107a152a8f
commit 0d4768528d
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ void ExternalCommandListener::CommandPipeThread(const String& commandPath)
(line[strlen(line) - 1] == '\r' || line[strlen(line) - 1] == '\n'))
line[strlen(line) - 1] = '\0';
Utility::QueueAsyncCallback(boost::bind(&ExternalCommandListener::ExecuteCommand, line));
Utility::QueueAsyncCallback(boost::bind(&ExternalCommandListener::ExecuteCommand, String(line)));
}
delete line;