[vlc-commits] [Git][videolan/vlc][master] playlist: asx: break on empty readdir node
Steve Lhomme (@robUx4)
gitlab at videolan.org
Tue Sep 8 08:01:58 UTC 2026
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
a6c467e7 by François Cartegnie at 2026-09-08T07:46:23+00:00
playlist: asx: break on empty readdir node
fixes #30091
- - - - -
1 changed file:
- modules/demux/playlist/asx.c
Changes:
=====================================
modules/demux/playlist/asx.c
=====================================
@@ -676,7 +676,7 @@ static int ReadDir( stream_t *p_demux, input_item_node_t *p_subitems )
do
{
i_type = xml_ReaderNextNode( p_xml_reader, &psz_node );
- if( i_type == XML_READER_ERROR )
+ if( i_type == XML_READER_ERROR || i_type == XML_READER_NONE )
break;
if( i_type == XML_READER_STARTELEM )
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a6c467e743f49055282d8b7696c8c401cdff4fcd
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a6c467e743f49055282d8b7696c8c401cdff4fcd
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help
More information about the vlc-commits
mailing list