From 295d4db8cfeca8d257f73fa29821e4a662790268 Mon Sep 17 00:00:00 2001 From: Tanu Kaskinen Date: Fri, 28 Jul 2017 04:07:49 +0300 Subject: [PATCH] raop: silence a Coverity complaint CID: 1398155 --- src/modules/raop/raop-sink.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/modules/raop/raop-sink.c b/src/modules/raop/raop-sink.c index e5d219e87..4d13927fc 100644 --- a/src/modules/raop/raop-sink.c +++ b/src/modules/raop/raop-sink.c @@ -391,6 +391,13 @@ static void thread_func(void *userdata) { if (!pa_raop_client_can_stream(u->raop)) continue; + /* This assertion is meant to silence a complaint from Coverity about + * pollfd being possibly NULL when we access it later. That's a false + * positive, because we check pa_raop_client_can_stream() above, and if + * that returns true, it means that the connection is up, and when the + * connection is up, pollfd will be non-NULL. */ + pa_assert(pollfd); + if (u->memchunk.length <= 0) { if (u->memchunk.memblock) pa_memblock_unref(u->memchunk.memblock);