Remove no-op os_deinit()
This commit is contained in:
parent
1a3ff0dd55
commit
6db32640ef
|
@ -605,7 +605,7 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
if(!os_init(config.foreground,runas)) {
|
if(!os_init(config.foreground,runas)) {
|
||||||
DPRINTF(E_LOG,L_MAIN,"Could not initialize server\n");
|
DPRINTF(E_LOG,L_MAIN,"Could not initialize server\n");
|
||||||
os_deinit();
|
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -615,7 +615,7 @@ int main(int argc, char *argv[]) {
|
||||||
if (!main_timer)
|
if (!main_timer)
|
||||||
{
|
{
|
||||||
DPRINTF(E_FATAL, L_MAIN, "Out of memory\n");
|
DPRINTF(E_FATAL, L_MAIN, "Out of memory\n");
|
||||||
os_deinit();
|
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
free(runas);
|
free(runas);
|
||||||
|
@ -626,7 +626,6 @@ int main(int argc, char *argv[]) {
|
||||||
{
|
{
|
||||||
DPRINTF(E_FATAL, L_MAIN | L_REND, "mDNS init failed\n");
|
DPRINTF(E_FATAL, L_MAIN | L_REND, "mDNS init failed\n");
|
||||||
|
|
||||||
os_deinit();
|
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -643,7 +642,6 @@ int main(int argc, char *argv[]) {
|
||||||
DPRINTF(E_LOG,L_MAIN|L_DB,"Error opening db: %s\n",perr);
|
DPRINTF(E_LOG,L_MAIN|L_DB,"Error opening db: %s\n",perr);
|
||||||
|
|
||||||
mdns_deinit();
|
mdns_deinit();
|
||||||
os_deinit();
|
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -802,7 +800,6 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
DPRINTF(E_LOG,L_MAIN,"Done!\n");
|
DPRINTF(E_LOG,L_MAIN,"Done!\n");
|
||||||
|
|
||||||
os_deinit();
|
|
||||||
io_deinit();
|
io_deinit();
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,12 +102,6 @@ int os_init(int foreground, char *runas) {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* do any deinitialization necessary for the platform
|
|
||||||
*/
|
|
||||||
void os_deinit(void) {
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* start syslogging
|
* start syslogging
|
||||||
*
|
*
|
||||||
|
|
1
src/os.h
1
src/os.h
|
@ -27,7 +27,6 @@
|
||||||
|
|
||||||
/* backgrounding, signal handling, etc */
|
/* backgrounding, signal handling, etc */
|
||||||
extern int os_init(int foreground, char *runas);
|
extern int os_init(int foreground, char *runas);
|
||||||
extern void os_deinit(void);
|
|
||||||
|
|
||||||
/* system native logging functions */
|
/* system native logging functions */
|
||||||
extern int os_opensyslog(void);
|
extern int os_opensyslog(void);
|
||||||
|
|
Loading…
Reference in New Issue