Update mz_strm.c

This commit is contained in:
rusdevops 2017-10-25 11:12:03 -07:00 committed by GitHub
parent 3c305cfff3
commit a039e4468a

View File

@ -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;
}