mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
Fix: Do not segfault if no real source could be found
This commit is contained in:
parent
6c42bcb0f4
commit
03249ff5f4
@ -893,14 +893,17 @@ static xmlNodePtr _dump_stats_to_doc (xmlNodePtr root, const char *show_mount, i
|
||||
|
||||
avl_tree_rlock(global.source_tree);
|
||||
source_real = source_find_mount_raw(source->source);
|
||||
if (source_real) {
|
||||
history = playlist_render_xspf(source_real->history);
|
||||
if (history)
|
||||
xmlAddChild(xmlnode, history);
|
||||
|
||||
metadata = xmlNewTextChild(xmlnode, NULL, XMLSTR("metadata"), NULL);
|
||||
if (source_real->format) {
|
||||
for (i = 0; i < source_real->format->vc.comments; i++)
|
||||
__add_metadata(metadata, source_real->format->vc.user_comments[i]);
|
||||
}
|
||||
}
|
||||
avl_tree_unlock(global.source_tree);
|
||||
|
||||
config = config_get_config();
|
||||
|
Loading…
x
Reference in New Issue
Block a user