fixed some unitialized variables

This commit is contained in:
nillerusr
2022-08-19 23:27:37 +03:00
parent 0a66367243
commit a16123e4be
7 changed files with 24 additions and 8 deletions

View File

@@ -279,7 +279,7 @@ CSysModule *Sys_LoadModule( const char *pModuleName, Sys_Flags flags /* = SYS_NO
// prior to the call to this routine.
char szCwd[1024];
#ifdef POSIX
char szModuleName[1024];
char szModuleName[1024] = { 0 };
#endif
HMODULE hDLL = NULL;