Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-Server
Commits
e99eee6c
Commit
e99eee6c
authored
Sep 14, 2007
by
Karl Heyes
Browse files
small build fix and a minor issue highlighted by coverity
svn path=/icecast/trunk/icecast/; revision=13798
parent
4b647b9c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/admin.c
View file @
e99eee6c
...
...
@@ -1005,8 +1005,9 @@ static void command_list_mounts(client_t *client, int response)
}
else
{
xmlDocPtr
doc
;
avl_tree_rlock
(
global
.
source_tree
);
xmlDocPtr
doc
=
admin_build_sourcelist
(
NULL
);
doc
=
admin_build_sourcelist
(
NULL
);
avl_tree_unlock
(
global
.
source_tree
);
admin_send_response
(
doc
,
client
,
response
,
...
...
src/format_vorbis.c
View file @
e99eee6c
...
...
@@ -440,13 +440,13 @@ static void vorbis_set_tag (format_plugin_t *plugin, const char *tag, const char
ogg_info
->
artist
=
value
;
change
=
1
;
}
if
(
strcmp
(
tag
,
"title"
)
==
0
)
else
if
(
strcmp
(
tag
,
"title"
)
==
0
)
{
free
(
ogg_info
->
title
);
ogg_info
->
title
=
value
;
change
=
1
;
}
if
(
strcmp
(
tag
,
"song"
)
==
0
)
else
if
(
strcmp
(
tag
,
"song"
)
==
0
)
{
free
(
ogg_info
->
artist
);
free
(
ogg_info
->
title
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment