Commit a728d7a0 authored by Max Kellermann's avatar Max Kellermann

input/rewind: fix double free bug

Duplicate the "mime" attribute of the inner input_stream object, instead of copying the pointer.
parent e8d8bd4c
ver 0.15.14 (2010/??/??)
* output_thread: fix assertion failure due to race condition in OPEN
* input:
- rewind: fix double free bug
* decoders:
- mp4ff, ffmpeg: add extension ".m4b" (audio book)
......
......@@ -244,4 +244,5 @@ input_rewind_open(struct input_stream *is)
input stream */
is->plugin = &rewind_input_plugin;
is->data = c;
is->mime = g_strdup(c->input.mime);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment