You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support delete mode ('d') for in-memory zip streams (#333) (#391) * Support delete mode ('d') for in-memory zip streams (#333) Allow zip_stream_open to accept 'd' mode so callers can delete entries from an in-memory archive without duplicating the buffer. A dedicated write function (zip_stream_delete_write_func) keeps the same heap-write semantics as miniz but uses a distinct pointer so mz_zip_writer_end won't free the caller's buffer—no miniz changes required. Seven new ASan-clean tests cover delete-by-name, delete-by-index, invalid indices, close-without-copy, open-then-close, delete-all, and multiple zip_stream_copy calls.