Skip to content

Commit

Permalink
Revert r5469 and r5470, older version of windows may not return a val…
Browse files Browse the repository at this point in the history
…id value.

git-svn-id: svn://scm.orgis.org/mpg123/trunk@5471 35dc7657-300d-0410-a2e5-dc2837fedb53
  • Loading branch information
jon_y committed Dec 29, 2024
1 parent 936c178 commit 45fbaae
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 45fbaae

Please sign in to comment.