From 64a7fd3a1268588b520b6d93820933b12dbcf650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= Date: Thu, 8 Dec 2022 00:25:38 +0000 Subject: [PATCH] ao_pipewire: free properties on failure --- audio/out/ao_pipewire.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/audio/out/ao_pipewire.c b/audio/out/ao_pipewire.c index bbdc1de3ca..9df14a4355 100644 --- a/audio/out/ao_pipewire.c +++ b/audio/out/ao_pipewire.c @@ -511,7 +511,7 @@ static int init(struct ao *ao) ); if (pipewire_init_boilerplate(ao) < 0) - goto error; + goto error_props; ao->device_buffer = p->options.buffer_msec * ao->samplerate / 1000; @@ -535,7 +535,7 @@ static int init(struct ao *ao) params[0] = spa_format_audio_raw_build(&b, SPA_PARAM_EnumFormat, &audio_info); if (!params[0]) - goto error; + goto error_props; if (af_fmt_is_planar(ao->format)) { ao->num_planes = ao->channels.num; @@ -575,6 +575,8 @@ static int init(struct ao *ao) return 0; +error_props: + pw_properties_free(props); error: uninit(ao); return -1;