fixing a bug in searching for cmd for bat/cmd files, thx ravelo to found this stupied bug

svn path=/trunk/; revision=17528
This commit is contained in:
Magnus Olsen 2005-08-24 23:33:34 +00:00
parent bc8811f677
commit 4782b7ce3e

View file

@ -130,11 +130,12 @@ INT cmd_start (LPTSTR First, LPTSTR Rest)
error_bad_command ();
return 1;
}
memcpy(&szFullCmdLine[_tcslen(szFullCmdLine)],_T("\" /K "), 5 * sizeof(TCHAR));
memcpy(&szFullCmdLine[_tcslen(szFullCmdLine)], szFullName, _tcslen(szFullName) * sizeof(TCHAR));
memcpy(&szFullCmdLine[1], &szFullCmdLine[2], _tcslen(szFullCmdLine) * sizeof(TCHAR));
szFullCmdLine[0] = _T('\"');
memcpy(&szFullCmdLine[_tcslen(szFullCmdLine)],_T("\" /K "), 5 * sizeof(TCHAR));
memcpy(&szFullCmdLine[_tcslen(szFullCmdLine)], szFullName, _tcslen(szFullName) * sizeof(TCHAR));
memcpy(&szFullCmdLine[1], &szFullCmdLine[0], _tcslen(szFullCmdLine) * sizeof(TCHAR));
szFullCmdLine[0] = _T('\"');
}
#ifdef _DEBUG