Commit 35c5a371 authored by Max Kellermann's avatar Max Kellermann

decoder/mad: fix crash when seeking at end of song

Removed the decoder_command_finished() call at the end of mp3_decode(). This is invalid, because decoder_command_finished() has already been called in mp3_read().
parent 728c66e7
ver 0.15.9 (2009/??/??)
* decoders:
- mad: fix crash when seeking at end of song
ver 0.15.8 (2010/01/17)
......
......@@ -1207,10 +1207,6 @@ mp3_decode(struct decoder *decoder, struct input_stream *input_stream)
if (replay_gain_info)
replay_gain_info_free(replay_gain_info);
if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK &&
data.mute_frame == MUTEFRAME_SEEK)
decoder_command_finished(decoder);
mp3_data_finish(&data);
}
......
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