From 8d7bf30abb5e8a711298e104a4bd30e9203abe0f Mon Sep 17 00:00:00 2001 From: Ismo Puustinen Date: Wed, 28 May 2014 15:56:11 +0300 Subject: [PATCH] audiomgr: do not use uninitialized memory. Change-Id: Ice0317c45a85fec06b8a3fb2811e97a884a43cbe --- murphy/audiomgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/murphy/audiomgr.c b/murphy/audiomgr.c index d970e76..23552d7 100644 --- a/murphy/audiomgr.c +++ b/murphy/audiomgr.c @@ -554,7 +554,7 @@ static bool find_default_route(struct userdata *u, am_connect_data *cd) { pa_audiomgr *am; - routes_t *defrts = &am->defrts; + routes_t *defrts; link_t *link; mir_node *pair; int i; -- 2.7.4