mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-05 04:10:34 -04:00
[pipe] Fix minor memleak
This commit is contained in:
parent
13e6889990
commit
d8255e1d08
@ -801,10 +801,12 @@ stop(struct player_source *ps)
|
|||||||
|
|
||||||
// Reset the pipe and start watching it again for new data. Must be async or
|
// Reset the pipe and start watching it again for new data. Must be async or
|
||||||
// we will deadlock from the stop in pipe_read_cb().
|
// we will deadlock from the stop in pipe_read_cb().
|
||||||
|
if (pipe_autostart)
|
||||||
|
{
|
||||||
id = malloc(sizeof(int));
|
id = malloc(sizeof(int));
|
||||||
*id = pipe->id;
|
*id = pipe->id;
|
||||||
if (pipe_autostart)
|
|
||||||
commands_exec_async(cmdbase, pipe_watch_reset, id);
|
commands_exec_async(cmdbase, pipe_watch_reset, id);
|
||||||
|
}
|
||||||
|
|
||||||
if (pipe_metadata)
|
if (pipe_metadata)
|
||||||
worker_execute(pipe_metadata_watch_del, NULL, 0, 0);
|
worker_execute(pipe_metadata_watch_del, NULL, 0, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user