mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
mz_zip_rw.c - fix potential null dereference in create functions
This commit is contained in:
parent
8642018342
commit
261402ad2d
@ -974,8 +974,9 @@ void *mz_zip_reader_create(void **handle) {
|
||||
memset(reader, 0, sizeof(mz_zip_reader));
|
||||
reader->recover = 1;
|
||||
reader->progress_cb_interval_ms = MZ_DEFAULT_PROGRESS_INTERVAL;
|
||||
*handle = reader;
|
||||
}
|
||||
if (handle != NULL)
|
||||
*handle = reader;
|
||||
|
||||
return reader;
|
||||
}
|
||||
@ -1905,9 +1906,9 @@ void *mz_zip_writer_create(void **handle) {
|
||||
#endif
|
||||
writer->compress_level = MZ_COMPRESS_LEVEL_BEST;
|
||||
writer->progress_cb_interval_ms = MZ_DEFAULT_PROGRESS_INTERVAL;
|
||||
|
||||
*handle = writer;
|
||||
}
|
||||
if (handle != NULL)
|
||||
*handle = writer;
|
||||
|
||||
return writer;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user