[BUG_FIXED] Fix a crash bug while file not found for -qf argument on start up.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1331 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2015-02-02 08:20:52 +00:00
parent b1b6f01f34
commit b1d9ffe83f
1 changed files with 7 additions and 3 deletions

View File

@ -237,9 +237,13 @@ void Notepad_plus_Window::init(HINSTANCE hInst, HWND parent, const TCHAR *cmdLin
{
std::string destStr = dest;
generic_string fileName(destStr.begin(), destStr.end());
_userQuote = getFileContent(fileName.c_str());
if (_userQuote != "")
_notepad_plus_plus_core.showQuote(_userQuote.c_str(), "Anonymous #999", false);
if (::PathFileExists(fileName.c_str()))
{
_userQuote = getFileContent(fileName.c_str());
if (_userQuote != "")
_notepad_plus_plus_core.showQuote(_userQuote.c_str(), "Anonymous #999", false);
}
}
}