[pulseaudio-commits] src/pulsecore
Tanu Kaskinen
tanuk at kemper.freedesktop.org
Tue Jul 16 04:05:32 PDT 2013
src/pulsecore/sink.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit afb2c8f9e335a05e5f529723f025ebfdfb1ffea0
Author: Tanu Kaskinen <tanu.kaskinen at linux.intel.com>
Date: Tue Jul 16 13:58:47 2013 +0300
sink: Add missing curly braces
The missing braces didn't cause any practical problems, but obviously
the intention was to reset the chunk only if the memblock was
non-NULL.
diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c
index 902a537..3cdabd4 100644
--- a/src/pulsecore/sink.c
+++ b/src/pulsecore/sink.c
@@ -1106,9 +1106,10 @@ static void inputs_drop(pa_sink *s, pa_mix_info *info, unsigned n, pa_memchunk *
}
if (m) {
- if (m->chunk.memblock)
+ if (m->chunk.memblock) {
pa_memblock_unref(m->chunk.memblock);
pa_memchunk_reset(&m->chunk);
+ }
pa_sink_input_unref(m->userdata);
m->userdata = NULL;
More information about the pulseaudio-commits
mailing list