Skip to content

demux/ogg: fix stream re-use

Marvin Scholz requested to merge ePirat/vlc:epirat-fix-ogg-stream-reuse into master

Stream re-use could never happen, as p_stream->p_es is always NULL here, as implied by the earlier check:

if ( p_stream->p_es == NULL && !p_stream->b_finished )

To fix that, the check for a non-null p_stream->p_es is removed.

Partially fixes #25186 (closed)

Merge request reports