During my work on module-loopback I found a bug that sometimes crashes pulse when module-loopback is loaded due to pushing a zero-length block into the memblockq. As there is a one-line fix I thought you might want it for 6.0. --- src/modules/module-loopback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-loopback.c b/src/modules/module-loopback.c index e17051a..7e2b92a 100644 --- a/src/modules/module-loopback.c +++ b/src/modules/module-loopback.c @@ -272,7 +272,7 @@ static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk) pa_source_output_assert_io_context(o); pa_assert_se(u = o->userdata); - if (u->skip > chunk->length) { + if (u->skip >= chunk->length) { u->skip -= chunk->length; return; } -- 2.1.4