[vlc-commits] [Git][videolan/vlc][3.0.x] playlist: asx: break on empty readdir node
François Cartegnie (@fcartegnie)
gitlab at videolan.org
Sat Sep 12 06:52:51 UTC 2026
François Cartegnie pushed to branch 3.0.x at VideoLAN / VLC
Commits:
f9d61561 by François Cartegnie at 2026-09-12T08:43:27+02:00
playlist: asx: break on empty readdir node
fixes #30091
- - - - -
1 changed file:
- modules/demux/playlist/asx.c
Changes:
=====================================
modules/demux/playlist/asx.c
=====================================
@@ -678,7 +678,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/f9d6156187f5191bd633d2186d3cfce58c1c9ab3
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/f9d6156187f5191bd633d2186d3cfce58c1c9ab3
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