mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
modules: Fix resource leak in raop_client
https://scan7.coverity.com:8443/reports.htm#v10205/p10016/fileInstanceId=8899&defectInstanceId=3735&mergedDefectId=591272 Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
7978baaf81
commit
9d3d732a63
1 changed files with 2 additions and 1 deletions
|
|
@ -367,7 +367,7 @@ static void rtsp_cb(pa_rtsp_client *rtsp, pa_rtsp_state state, pa_headerlist* he
|
|||
|
||||
pa_raop_client* pa_raop_client_new(pa_core *core, const char* host) {
|
||||
pa_parsed_address a;
|
||||
pa_raop_client* c = pa_xnew0(pa_raop_client, 1);
|
||||
pa_raop_client* c;
|
||||
|
||||
pa_assert(core);
|
||||
pa_assert(host);
|
||||
|
|
@ -375,6 +375,7 @@ pa_raop_client* pa_raop_client_new(pa_core *core, const char* host) {
|
|||
if (pa_parse_address(host, &a) < 0 || a.type == PA_PARSED_ADDRESS_UNIX)
|
||||
return NULL;
|
||||
|
||||
c = pa_xnew0(pa_raop_client, 1);
|
||||
c->core = core;
|
||||
c->fd = -1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue