Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
e99eee6c
Commit
e99eee6c
authored
Sep 14, 2007
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
src/admin.c
src/admin.c
+2
-1
src/format_vorbis.c
src/format_vorbis.c
+2
-2
No files found.
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
Markdown
is supported
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