fix crash when decoder is NULL
This commit is contained in:
parent
de8f2739c2
commit
b571ba27a4
@ -79,7 +79,7 @@ static int ogg_seek_cb(void *data, ogg_int64_t offset, int whence)
|
||||
struct vorbis_input_stream *vis = data;
|
||||
|
||||
return vis->seekable &&
|
||||
decoder_get_command(vis->decoder) != DECODE_COMMAND_STOP &&
|
||||
(!vis->decoder || decoder_get_command(vis->decoder) != DECODE_COMMAND_STOP) &&
|
||||
input_stream_seek(vis->input_stream, offset, whence, NULL)
|
||||
? 0 : -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user