From 36aa8ce3c9f34d41aa7fd94d90f23ba62f5caafb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Mon, 18 Jul 2011 13:38:46 +0200 Subject: output/ao: add missing g_free in error path --- src/output/ao_plugin.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/output/ao_plugin.c') diff --git a/src/output/ao_plugin.c b/src/output/ao_plugin.c index 6fedbc6e2..42ece5a3a 100644 --- a/src/output/ao_plugin.c +++ b/src/output/ao_plugin.c @@ -106,12 +106,14 @@ ao_output_init(G_GNUC_UNUSED const struct audio_format *audio_format, g_set_error(error, ao_output_quark(), 0, "\"%s\" is not a valid ao driver", value); + g_free(ad); return NULL; } if ((ai = ao_driver_info(ad->driver)) == NULL) { g_set_error(error, ao_output_quark(), 0, "problems getting driver info"); + g_free(ad); return NULL; } @@ -129,6 +131,7 @@ ao_output_init(G_GNUC_UNUSED const struct audio_format *audio_format, g_set_error(error, ao_output_quark(), 0, "problems parsing options \"%s\"", options[i]); + g_free(ad); return NULL; } -- cgit v1.2.3