From 7e442243ec201b6c82d700a025932c4128328e03 Mon Sep 17 00:00:00 2001 From: Ismo Puustinen Date: Wed, 28 May 2014 16:04:18 +0300 Subject: [PATCH] discover: do not use uninitialized variables. Change-Id: Ic38c70fddc1d93649c9eb081e093f85f605157f2 --- murphy/discover.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/murphy/discover.c b/murphy/discover.c index 3daf291..063eabd 100644 --- a/murphy/discover.c +++ b/murphy/discover.c @@ -846,7 +846,7 @@ bool pa_discover_preroute_sink_input(struct userdata *u, pa_muxnode *mux; pa_nodeset_resdef *resdef; bool loopback; - bool remap; + bool remap = false; pa_assert(u); pa_assert(data); -- 2.7.4