Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
5732ec21
Commit
5732ec21
authored
Aug 11, 2005
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a few fixes needed after some testing on win32
svn path=/icecast/trunk/icecast/; revision=9730
parent
afae729c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
src/auth.c
src/auth.c
+1
-1
src/cfgfile.c
src/cfgfile.c
+1
-0
src/main.c
src/main.c
+4
-3
No files found.
src/auth.c
View file @
5732ec21
...
...
@@ -114,7 +114,7 @@ void auth_release (auth_t *authenticator)
if
(
authenticator
->
free
)
authenticator
->
free
(
authenticator
);
f
ree
(
authenticator
->
type
);
xmlF
ree
(
authenticator
->
type
);
free
(
authenticator
);
}
...
...
src/cfgfile.c
View file @
5732ec21
...
...
@@ -211,6 +211,7 @@ void config_clear(ice_config_t *c)
option
=
nextopt
;
}
auth_release
(
mount
->
auth
);
free
(
mount
);
mount
=
nextmount
;
}
...
...
src/main.c
View file @
5732ec21
...
...
@@ -108,18 +108,19 @@ static void _shutdown_subsystems(void)
xslt_shutdown
();
refbuf_shutdown
();
slave_shutdown
();
auth_shutdown
();
yp_shutdown
();
stats_shutdown
();
/* Now that these are done, we can stop the loggers. */
_stop_logging
();
global_shutdown
();
connection_shutdown
();
config_shutdown
();
resolver_shutdown
();
sock_shutdown
();
thread_shutdown
();
/* Now that these are done, we can stop the loggers. */
_stop_logging
();
log_shutdown
();
xmlCleanupParser
();
...
...
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