engine: filesystem: do not crash if engine was shutdown before filesystem was loaded
This commit is contained in:
parent
3e2a215c15
commit
5162ab62fd
1 changed files with 7 additions and 5 deletions
|
@ -55,8 +55,11 @@ static fs_interface_t fs_memfuncs =
|
|||
|
||||
static void FS_UnloadProgs( void )
|
||||
{
|
||||
COM_FreeLibrary( fs_hInstance );
|
||||
fs_hInstance = 0;
|
||||
if( fs_hInstance )
|
||||
{
|
||||
COM_FreeLibrary( fs_hInstance );
|
||||
fs_hInstance = 0;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef XASH_INTERNAL_GAMELIBS
|
||||
|
@ -133,9 +136,8 @@ FS_Shutdown
|
|||
*/
|
||||
void FS_Shutdown( void )
|
||||
{
|
||||
int i;
|
||||
|
||||
FS_ShutdownStdio();
|
||||
if( g_fsapi.ShutdownStdio )
|
||||
g_fsapi.ShutdownStdio();
|
||||
|
||||
memset( &SI, 0, sizeof( sysinfo_t ));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue