1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

fixed SEGV when streaming with mp3 with metadata

svn path=/trunk/icecast/; revision=4198
This commit is contained in:
oddsock 2003-01-01 21:21:20 +00:00
parent d8e9eb3883
commit 37fb98cad7

View File

@ -64,6 +64,9 @@ source_t *source_find_mount(const char *mount)
avl_node *node;
int cmp;
if (!mount) {
return NULL;
}
/* get the root node */
node = global.source_tree->root->right;