mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Thx harmut you did see the small bug, I miss, do not use MAX_PATH as lenght of command line, it must be CMDLINE_LENGTH instead, patch by Brandon Turner
svn path=/trunk/; revision=17250
This commit is contained in:
parent
f52a064741
commit
7217d69487
1 changed files with 3 additions and 3 deletions
|
@ -296,9 +296,9 @@ static VOID
|
|||
Execute (LPTSTR Full, LPTSTR First, LPTSTR Rest)
|
||||
{
|
||||
TCHAR szFullName[MAX_PATH];
|
||||
TCHAR first[MAX_PATH];
|
||||
TCHAR rest[MAX_PATH];
|
||||
TCHAR full[MAX_PATH];
|
||||
TCHAR first[CMDLINE_LENGTH];
|
||||
TCHAR rest[CMDLINE_LENGTH];
|
||||
TCHAR full[CMDLINE_LENGTH];
|
||||
#ifndef __REACTOS__
|
||||
TCHAR szWindowTitle[MAX_PATH];
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue