diff options
author | Max Kellermann <max@duempel.org> | 2014-08-23 13:50:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-23 13:50:36 +0200 |
commit | 1f642238a7022aac403246d9f6cb3f2951a96052 (patch) | |
tree | b5c166c153082bf300721b9242d1106ad3bd7ac6 /src | |
parent | 6fe06cad98360e872f06a6027f038d1949574e94 (diff) |
decoder/dsf: don't skip remaining bytes
Nobody cares.
Diffstat (limited to 'src')
-rw-r--r-- | src/decoder/plugins/DsfDecoderPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/plugins/DsfDecoderPlugin.cxx b/src/decoder/plugins/DsfDecoderPlugin.cxx index 81ed07315..5a2ac61e3 100644 --- a/src/decoder/plugins/DsfDecoderPlugin.cxx +++ b/src/decoder/plugins/DsfDecoderPlugin.cxx @@ -286,7 +286,7 @@ dsf_decode_chunk(Decoder &decoder, InputStream &is, break; } } - return dsdlib_skip(&decoder, is, chunk_size); + return true; } static void |