diff --git a/compat/ioapi.c b/compat/ioapi.c index b0571ac..9465f60 100644 --- a/compat/ioapi.c +++ b/compat/ioapi.c @@ -211,8 +211,7 @@ void mz_stream_ioapi_delete(void **stream) { if (!stream) return; ioapi = (mz_stream_ioapi *)*stream; - if (ioapi) - free(ioapi); + free(ioapi); *stream = NULL; } diff --git a/mz_strm.c b/mz_strm.c index f93198b..c8ca9e9 100644 --- a/mz_strm.c +++ b/mz_strm.c @@ -537,7 +537,6 @@ void mz_stream_raw_delete(void **stream) { if (!stream) return; raw = (mz_stream_raw *)*stream; - if (raw) - free(raw); + free(raw); *stream = NULL; } diff --git a/mz_strm_buf.c b/mz_strm_buf.c index c844459..2ca8197 100644 --- a/mz_strm_buf.c +++ b/mz_strm_buf.c @@ -372,8 +372,7 @@ void mz_stream_buffered_delete(void **stream) { if (!stream) return; buffered = (mz_stream_buffered *)*stream; - if (buffered) - free(buffered); + free(buffered); *stream = NULL; } diff --git a/mz_strm_bzip.c b/mz_strm_bzip.c index 10027c5..3b6ca8f 100644 --- a/mz_strm_bzip.c +++ b/mz_strm_bzip.c @@ -336,8 +336,7 @@ void mz_stream_bzip_delete(void **stream) { if (!stream) return; bzip = (mz_stream_bzip *)*stream; - if (bzip) - free(bzip); + free(bzip); *stream = NULL; } diff --git a/mz_strm_lzma.c b/mz_strm_lzma.c index b91d32b..227c146 100644 --- a/mz_strm_lzma.c +++ b/mz_strm_lzma.c @@ -443,8 +443,7 @@ void mz_stream_lzma_delete(void **stream) { if (!stream) return; lzma = (mz_stream_lzma *)*stream; - if (lzma) - free(lzma); + free(lzma); *stream = NULL; } diff --git a/mz_strm_os_posix.c b/mz_strm_os_posix.c index f76b878..e3b4543 100644 --- a/mz_strm_os_posix.c +++ b/mz_strm_os_posix.c @@ -186,8 +186,7 @@ void mz_stream_os_delete(void **stream) { if (!stream) return; posix = (mz_stream_posix *)*stream; - if (posix) - free(posix); + free(posix); *stream = NULL; } diff --git a/mz_strm_pkcrypt.c b/mz_strm_pkcrypt.c index 04fcb60..8098719 100644 --- a/mz_strm_pkcrypt.c +++ b/mz_strm_pkcrypt.c @@ -315,8 +315,7 @@ void mz_stream_pkcrypt_delete(void **stream) { if (!stream) return; pkcrypt = (mz_stream_pkcrypt *)*stream; - if (pkcrypt) - free(pkcrypt); + free(pkcrypt); *stream = NULL; } diff --git a/mz_strm_split.c b/mz_strm_split.c index b960f17..cb14fd5 100644 --- a/mz_strm_split.c +++ b/mz_strm_split.c @@ -404,11 +404,8 @@ void mz_stream_split_delete(void **stream) { return; split = (mz_stream_split *)*stream; if (split) { - if (split->path_cd) - free(split->path_cd); - if (split->path_disk) - free(split->path_disk); - + free(split->path_cd); + free(split->path_disk); free(split); } *stream = NULL; diff --git a/mz_strm_zlib.c b/mz_strm_zlib.c index c6557de..bcd5f30 100644 --- a/mz_strm_zlib.c +++ b/mz_strm_zlib.c @@ -369,8 +369,7 @@ void mz_stream_zlib_delete(void **stream) { if (!stream) return; zlib = (mz_stream_zlib *)*stream; - if (zlib) - free(zlib); + free(zlib); *stream = NULL; } diff --git a/mz_strm_zstd.c b/mz_strm_zstd.c index 18c3b54..af568e0 100644 --- a/mz_strm_zstd.c +++ b/mz_strm_zstd.c @@ -327,8 +327,7 @@ void mz_stream_zstd_delete(void **stream) { if (!stream) return; zstd = (mz_stream_zstd *)*stream; - if (zstd) - free(zstd); + free(zstd); *stream = NULL; } diff --git a/mz_zip.c b/mz_zip.c index a5ef75d..6a669d7 100644 --- a/mz_zip.c +++ b/mz_zip.c @@ -1416,9 +1416,7 @@ void mz_zip_delete(void **handle) { if (!handle) return; zip = (mz_zip *)*handle; - if (zip) { - free(zip); - } + free(zip); *handle = NULL; } @@ -1560,8 +1558,7 @@ int32_t mz_zip_set_comment(void *handle, const char *comment) { int32_t comment_size = 0; if (!zip || !comment) return MZ_PARAM_ERROR; - if (zip->comment) - free(zip->comment); + free(zip->comment); comment_size = (int32_t)strlen(comment); if (comment_size > UINT16_MAX) return MZ_PARAM_ERROR;