mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
Use simple free function in pa_queue_free
This commit is contained in:
parent
e45b02de55
commit
cbb3a8a61c
6 changed files with 13 additions and 13 deletions
|
|
@ -863,7 +863,7 @@ void pa_sink_move_all_finish(pa_sink *s, pa_queue *q, pa_bool_t save) {
|
|||
pa_sink_input_unref(i);
|
||||
}
|
||||
|
||||
pa_queue_free(q, NULL, NULL);
|
||||
pa_queue_free(q, NULL);
|
||||
}
|
||||
|
||||
/* Called from main context */
|
||||
|
|
@ -878,7 +878,7 @@ void pa_sink_move_all_fail(pa_queue *q) {
|
|||
pa_sink_input_unref(i);
|
||||
}
|
||||
|
||||
pa_queue_free(q, NULL, NULL);
|
||||
pa_queue_free(q, NULL);
|
||||
}
|
||||
|
||||
/* Called from IO thread context */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue