Commit ae038c09 authored by Michael Niedermayer's avatar Michael Niedermayer

vorbisdec: propagate errors from setup_classifs()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 712ef251
...@@ -1397,7 +1397,9 @@ static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc, ...@@ -1397,7 +1397,9 @@ static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc,
voffset = vr->begin; voffset = vr->begin;
for (partition_count = 0; partition_count < ptns_to_read;) { // SPEC error for (partition_count = 0; partition_count < ptns_to_read;) { // SPEC error
if (!pass) { if (!pass) {
setup_classifs(vc, vr, do_not_decode, ch_used, partition_count); int ret;
if ((ret = setup_classifs(vc, vr, do_not_decode, ch_used, partition_count)) < 0)
return ret;
} }
for (i = 0; (i < c_p_c) && (partition_count < ptns_to_read); ++i) { for (i = 0; (i < c_p_c) && (partition_count < ptns_to_read); ++i) {
for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) { for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment