From 02128b6e0363dffe67c7ef0c55725c4b47ff9522 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Thu, 19 Feb 2015 15:19:59 +0100 Subject: [PATCH] Fix very strange lifetime issue --- src/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reader.rs b/src/reader.rs index 0fea9cb4..83138a89 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -87,7 +87,7 @@ impl ZipReader /// Gets a reader for a contained zipfile. /// /// May return `ReaderUnavailable` if there is another reader borrowed. - pub fn read_file(&self, file: &ZipFile) -> ZipResult> + pub fn read_file<'a>(&'a self, file: &ZipFile) -> ZipResult> { let mut inner_reader = match self.inner.borrow_state() {