diff options
author | Max Kellermann <max@duempel.org> | 2014-11-26 20:19:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-11-26 20:19:17 +0100 |
commit | 737a56a0302b1030e1071c7be9add7bdca955e32 (patch) | |
tree | 93d9b6d625fa1b0ce9e8bf8d13fbc829be5178d1 /src/archive | |
parent | 12b6959ea201fea925c4376f961b8d54738292e2 (diff) | |
parent | 67cba251c8826409c82fb2ab75072dc4fca2b4dc (diff) | |
download | mpd-737a56a0302b1030e1071c7be9add7bdca955e32.tar.gz mpd-737a56a0302b1030e1071c7be9add7bdca955e32.tar.xz mpd-737a56a0302b1030e1071c7be9add7bdca955e32.zip |
Merge tag 'v0.19.5'
Diffstat (limited to 'src/archive')
-rw-r--r-- | src/archive/plugins/ZzipArchivePlugin.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/archive/plugins/ZzipArchivePlugin.cxx b/src/archive/plugins/ZzipArchivePlugin.cxx index b4dc7029f..21cb693d8 100644 --- a/src/archive/plugins/ZzipArchivePlugin.cxx +++ b/src/archive/plugins/ZzipArchivePlugin.cxx @@ -168,12 +168,13 @@ bool ZzipInputStream::Seek(offset_type new_offset, Error &error) { zzip_off_t ofs = zzip_seek(file, new_offset, SEEK_SET); - if (ofs != -1) { + if (ofs < 0) { error.Set(zzip_domain, "zzip_seek() has failed"); - offset = ofs; - return true; + return false; } - return false; + + offset = ofs; + return true; } /* exported structures */ |