mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Update mz_strm.c
This commit is contained in:
parent
3c305cfff3
commit
a039e4468a
@ -263,7 +263,7 @@ void mz_stream_delete(void **stream)
|
||||
if (stream == NULL)
|
||||
return;
|
||||
strm = (mz_stream *)*stream;
|
||||
if (strm != NULL && strm->vtbl != NULL && strm->vtbl->delete != NULL)
|
||||
strm->vtbl->delete(stream);
|
||||
if (strm != NULL && strm->vtbl != NULL && strm->vtbl->destroy != NULL)
|
||||
strm->vtbl->destroy(stream);
|
||||
*stream = NULL;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user