2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-21 17:37:32 +01:00

filesystem: zip: fix non-heap object dealloc

This commit is contained in:
Alibek Omarov 2024-09-30 01:23:58 +03:00
parent 2e5bc31c9e
commit 0a1269d52d

View File

@ -299,7 +299,6 @@ static zip_t *FS_LoadZip( const char *zipfile, int *error )
if( error )
*error = ZIP_LOAD_BAD_HEADER;
Mem_Free( info );
FS_CloseZIP( zip );
return NULL;
}
@ -316,7 +315,6 @@ static zip_t *FS_LoadZip( const char *zipfile, int *error )
if( error )
*error = ZIP_LOAD_CORRUPTED;
Mem_Free( info );
FS_CloseZIP( zip );
return NULL;
}
@ -364,7 +362,6 @@ static zip_t *FS_LoadZip( const char *zipfile, int *error )
if( error )
*error = ZIP_LOAD_CORRUPTED;
Mem_Free( info );
FS_CloseZIP( zip );
return NULL;
}