Update to new bzip2 code
This commit is contained in:
parent
22580a768d
commit
c7c97b85ad
2 changed files with 9 additions and 1 deletions
|
@ -31,6 +31,14 @@ impl error::FromError<io::IoError> for ZipError
|
|||
}
|
||||
}
|
||||
|
||||
impl<T> error::FromError<(T, io::IoError)> for ZipError
|
||||
{
|
||||
fn from_error((_, err): (T, io::IoError)) -> ZipError
|
||||
{
|
||||
error::FromError::from_error(err)
|
||||
}
|
||||
}
|
||||
|
||||
impl error::Error for ZipError
|
||||
{
|
||||
fn description(&self) -> &str
|
||||
|
|
|
@ -223,7 +223,7 @@ impl<W: Writer+Seek> GenericZipWriter<W>
|
|||
{
|
||||
GenericZipWriter::Storer(w) => w,
|
||||
GenericZipWriter::Deflater(w) => try!(w.finish()),
|
||||
GenericZipWriter::Bzip2(w) => try!(w.unwrap()),
|
||||
GenericZipWriter::Bzip2(w) => try!(w.into_inner()),
|
||||
GenericZipWriter::Closed => try!(Err(io::standard_error(io::Closed))),
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue