0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00

audio: fix small memory leak

Most commonly happened with --end, in which case that field tends to be
set.
This commit is contained in:
wm4 2017-10-27 13:54:08 +02:00
parent f08ec22567
commit 41beaa653a

View File

@ -372,6 +372,7 @@ static void ao_chain_uninit(struct ao_chain *ao_c)
talloc_free(ao_c->conv);
talloc_free(ao_c->input_frame);
talloc_free(ao_c->input_format);
talloc_free(ao_c->output_frame);
talloc_free(ao_c->filter_input_format);
talloc_free(ao_c->ao_buffer);
talloc_free(ao_c);