Fixed win/win.c to not NULL-check that which is not NULL.

This commit is contained in:
OBattler
2020-01-15 02:10:52 +01:00
parent 9347986ebe
commit cdac8c1c11

View File

@@ -336,8 +336,7 @@ ProcessCommandLine(wchar_t ***argw)
args[argc] = NULL;
*argw = args;
if (argbuf != NULL)
free(argbuf);
free(argbuf);
return(argc);
}