Skip to content

Commit

Permalink
Merge remote-tracking branch 'mpg123/master' into master-with-github-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mpg123 GitHub bot committed Dec 29, 2024
2 parents abc1586 + 45fbaae commit 6c9f09e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/win32_support.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ typedef struct
} _startupinfo;

/* XP and later has an int return though */
int __cdecl __declspec(dllimport) __wgetmainargs (
void __cdecl __declspec(dllimport) __wgetmainargs (
int *_Argc,
wchar_t ***_Argv,
wchar_t ***_Env,
Expand All @@ -31,10 +31,7 @@ int win32_cmdline_utf8(int * argc, char *** argv)
if(argv == NULL || argc == NULL) return -1;

startup.newmode = 0;
if (__wgetmainargs(argc, &argv_wide, &env, 1, &startup) != 0) {
error("Cannot allocate memory for command line.");
return -1;
}
__wgetmainargs(argc, &argv_wide,&env,1, &startup);
*argv = (char **)calloc(sizeof (char *), *argc);
if(*argv == NULL){ error("Cannot allocate memory for command line."); return -1; }

Expand Down

0 comments on commit 6c9f09e

Please sign in to comment.