X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oggdec_filter.c;h=c5c0b538cd739c6d7168d6125d5e5562e476cb9b;hp=16c8d907f01fab92fa6c1c74435920448da5349f;hb=0eb69b6d45c54deda1724b2db2202cf4057b0309;hpb=c7e2f73900021e5b3f655c91a7cc0fdda76bd0ec diff --git a/oggdec_filter.c b/oggdec_filter.c index 16c8d907..c5c0b538 100644 --- a/oggdec_filter.c +++ b/oggdec_filter.c @@ -208,9 +208,13 @@ static void ogg_post_select(__a_unused struct sched *s, struct task *t) char *buf; ret = btr_node_status(btrn, fn->min_iqs, BTR_NT_INTERNAL); - if (ret < 0 && ret != -E_BTR_EOF) /* fatal error */ - goto out; - if (ret <= 0 && !pod->have_more) /* nothing to do */ + if (ret < 0) { + if (ret != -E_BTR_EOF) /* fatal error */ + goto out; + if (fn->min_iqs == 0 && !pod->have_more) /* EOF */ + goto out; + /* last ov_read() returned OV_HOLE */ + } else if (ret == 0 && !pod->have_more) /* nothing to do */ goto out; if (btr_get_output_queue_size(btrn) > OGGDEC_MAX_OUTPUT_SIZE) return; @@ -255,7 +259,7 @@ static void ogg_post_select(__a_unused struct sched *s, struct task *t) out: t->error = ret; if (ret < 0) - btr_remove_node(btrn); + btr_remove_node(&fn->btrn); } /**