Commit c5942976 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix off-by-one error

parent df7648f0
...@@ -93,7 +93,7 @@ static int parse_cmdline (char *line, char ***argvp) ...@@ -93,7 +93,7 @@ static int parse_cmdline (char *line, char ***argvp)
int WINAPI wWinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, int WINAPI wWinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPWSTR lpCmdLine, int nCmdShow ) LPWSTR lpCmdLine, int nCmdShow )
{ {
char **argv, psz_cmdline[wcslen(lpCmdLine) * 4]; char **argv, psz_cmdline[wcslen(lpCmdLine) * 4 + 1];
int argc, ret; int argc, ret;
(void)hInstance; (void)hPrevInstance; (void)nCmdShow; (void)hInstance; (void)hPrevInstance; (void)nCmdShow;
...@@ -129,8 +129,8 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, ...@@ -129,8 +129,8 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR args, int nCmdShow) LPSTR args, int nCmdShow)
{ {
/* This makes little sense, but at least it links properly */ /* This makes little sense, but at least it links properly */
wchar_t lpCmdLine[strlen(args) * 3]; wchar_t lpCmdLine[(strlen (args) + 1) * 3];
MultiByteToWideChar( CP_ACP, 0, args, -1, lpCmdLine, sizeof(lpCmdLine) ); MultiByteToWideChar (CP_ACP, 0, args, -1, lpCmdLine, sizeof (lpCmdLine));
return wWinMain (hInstance, hPrevInstance, lpCmdLine, nCmdShow); return wWinMain (hInstance, hPrevInstance, lpCmdLine, nCmdShow);
} }
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment