projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ebecc0
)
mp3dec: Remove dead store.
author
Andre Noll
<maan@systemlinux.org>
Tue, 15 May 2012 20:13:09 +0000
(22:13 +0200)
committer
Andre Noll
<maan@systemlinux.org>
Wed, 13 Jun 2012 11:25:49 +0000
(13:25 +0200)
mp3dec_filter.c:133:3: warning: Value stored to 'ret' is never read
ret = mad_stream_sync(&pmd->stream);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mp3dec_filter.c
patch
|
blob
|
history
diff --git
a/mp3dec_filter.c
b/mp3dec_filter.c
index
4bdbc6f
..
6955a74
100644
(file)
--- a/
mp3dec_filter.c
+++ b/
mp3dec_filter.c
@@
-130,7
+130,7
@@
decode:
ret = handle_decode_error(pmd);
if (ret < 0)
goto err;
-
ret =
mad_stream_sync(&pmd->stream);
+ mad_stream_sync(&pmd->stream);
if (pmd->stream.error == MAD_ERROR_BUFLEN) {
ret = -E_MP3DEC_EOF;
if (len == iqs && btr_no_parent(btrn))