Let ZipWriter::finish be called without consuming

Resolves #10
This commit is contained in:
Mathijs van de Nes 2016-02-22 19:54:18 +01:00
parent aaa49eb4f1
commit d95c925ac2
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "zip"
version = "0.1.15"
version = "0.1.16"
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"]
license = "MIT"
repository = "https://github.com/mvdnes/zip-rs.git"

View file

@ -185,7 +185,7 @@ impl<W: Write+io::Seek> ZipWriter<W>
///
/// This will return the writer, but one should normally not append any data to the end of the file.
/// Note that the zipfile will also be finished on drop.
pub fn finish(mut self) -> ZipResult<W>
pub fn finish(&mut self) -> ZipResult<W>
{
try!(self.finalize());
let inner = mem::replace(&mut self.inner, GenericZipWriter::Closed);