Fixed another resource leak in win/win.c.

This commit is contained in:
OBattler
2020-01-15 00:41:02 +01:00
parent 1f4927cdce
commit a39bb1db2b

View File

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