optimize:fix resource leak Fixes #20

This commit is contained in:
yifang 2022-02-17 20:08:20 +08:00 committed by Abs62
parent 570c75e920
commit 22f72faa03

View file

@ -349,7 +349,9 @@ static enum DZ_ERRORS dict_read_header( const char *filename,
}
header->chunks = xmalloc( sizeof( header->chunks[0] )
* header->chunkCount );
if( header->chunks == 0 ) {
if( header->chunks == 0 )
{
fclose( str );
return DZ_ERR_NOMEMORY;
}