From 3af25601db68387e7818f87c2c3144ea4431c14a Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Thu, 11 Feb 2016 18:34:11 +0100 Subject: [PATCH] gvc-mixer-control: Fix uninitialized variable usage --- gvc-mixer-control.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gvc-mixer-control.c b/gvc-mixer-control.c index e2186b1..67ac412 100644 --- a/gvc-mixer-control.c +++ b/gvc-mixer-control.c @@ -2107,12 +2107,12 @@ sink_info_cb (pa_context *c, if (i->card != data->headset_card) return; + s = data->port_name_to_set; + if (i->active_port && strcmp (i->active_port->name, s) == 0) return; - s = data->port_name_to_set; - for (j = 0; j < i->n_ports; j++) if (strcmp (i->ports[j]->name, s) == 0) break; @@ -2144,11 +2144,11 @@ source_info_cb (pa_context *c, if (i->card != data->headset_card) return; + s = data->port_name_to_set; + if (i->active_port && strcmp (i->active_port->name, s) == 0) return; - s = data->port_name_to_set; - for (j = 0; j < i->n_ports; j++) if (strcmp (i->ports[j]->name, s) == 0) break;