Remove excess checks before free()

References:
- https://pubs.opengroup.org/onlinepubs/009695399/functions/free.html
- https://stackoverflow.com/a/18775633
This commit is contained in:
Herman Semenov 2025-02-28 04:59:34 +03:00 committed by Nathan Moinvaziri
parent 55db144e03
commit dd91a4db20
11 changed files with 13 additions and 28 deletions

View File

@ -211,7 +211,6 @@ void mz_stream_ioapi_delete(void **stream) {
if (!stream) if (!stream)
return; return;
ioapi = (mz_stream_ioapi *)*stream; ioapi = (mz_stream_ioapi *)*stream;
if (ioapi)
free(ioapi); free(ioapi);
*stream = NULL; *stream = NULL;
} }

View File

@ -537,7 +537,6 @@ void mz_stream_raw_delete(void **stream) {
if (!stream) if (!stream)
return; return;
raw = (mz_stream_raw *)*stream; raw = (mz_stream_raw *)*stream;
if (raw)
free(raw); free(raw);
*stream = NULL; *stream = NULL;
} }

View File

@ -372,7 +372,6 @@ void mz_stream_buffered_delete(void **stream) {
if (!stream) if (!stream)
return; return;
buffered = (mz_stream_buffered *)*stream; buffered = (mz_stream_buffered *)*stream;
if (buffered)
free(buffered); free(buffered);
*stream = NULL; *stream = NULL;
} }

View File

@ -336,7 +336,6 @@ void mz_stream_bzip_delete(void **stream) {
if (!stream) if (!stream)
return; return;
bzip = (mz_stream_bzip *)*stream; bzip = (mz_stream_bzip *)*stream;
if (bzip)
free(bzip); free(bzip);
*stream = NULL; *stream = NULL;
} }

View File

@ -443,7 +443,6 @@ void mz_stream_lzma_delete(void **stream) {
if (!stream) if (!stream)
return; return;
lzma = (mz_stream_lzma *)*stream; lzma = (mz_stream_lzma *)*stream;
if (lzma)
free(lzma); free(lzma);
*stream = NULL; *stream = NULL;
} }

View File

@ -186,7 +186,6 @@ void mz_stream_os_delete(void **stream) {
if (!stream) if (!stream)
return; return;
posix = (mz_stream_posix *)*stream; posix = (mz_stream_posix *)*stream;
if (posix)
free(posix); free(posix);
*stream = NULL; *stream = NULL;
} }

View File

@ -315,7 +315,6 @@ void mz_stream_pkcrypt_delete(void **stream) {
if (!stream) if (!stream)
return; return;
pkcrypt = (mz_stream_pkcrypt *)*stream; pkcrypt = (mz_stream_pkcrypt *)*stream;
if (pkcrypt)
free(pkcrypt); free(pkcrypt);
*stream = NULL; *stream = NULL;
} }

View File

@ -404,11 +404,8 @@ void mz_stream_split_delete(void **stream) {
return; return;
split = (mz_stream_split *)*stream; split = (mz_stream_split *)*stream;
if (split) { if (split) {
if (split->path_cd)
free(split->path_cd); free(split->path_cd);
if (split->path_disk)
free(split->path_disk); free(split->path_disk);
free(split); free(split);
} }
*stream = NULL; *stream = NULL;

View File

@ -369,7 +369,6 @@ void mz_stream_zlib_delete(void **stream) {
if (!stream) if (!stream)
return; return;
zlib = (mz_stream_zlib *)*stream; zlib = (mz_stream_zlib *)*stream;
if (zlib)
free(zlib); free(zlib);
*stream = NULL; *stream = NULL;
} }

View File

@ -327,7 +327,6 @@ void mz_stream_zstd_delete(void **stream) {
if (!stream) if (!stream)
return; return;
zstd = (mz_stream_zstd *)*stream; zstd = (mz_stream_zstd *)*stream;
if (zstd)
free(zstd); free(zstd);
*stream = NULL; *stream = NULL;
} }

View File

@ -1416,9 +1416,7 @@ void mz_zip_delete(void **handle) {
if (!handle) if (!handle)
return; return;
zip = (mz_zip *)*handle; zip = (mz_zip *)*handle;
if (zip) {
free(zip); free(zip);
}
*handle = NULL; *handle = NULL;
} }
@ -1560,7 +1558,6 @@ int32_t mz_zip_set_comment(void *handle, const char *comment) {
int32_t comment_size = 0; int32_t comment_size = 0;
if (!zip || !comment) if (!zip || !comment)
return MZ_PARAM_ERROR; return MZ_PARAM_ERROR;
if (zip->comment)
free(zip->comment); free(zip->comment);
comment_size = (int32_t)strlen(comment); comment_size = (int32_t)strlen(comment);
if (comment_size > UINT16_MAX) if (comment_size > UINT16_MAX)