projects
/
paraslash.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
audiod clean_exit(): Only check status fd once
[paraslash.git]
/
audiod.c
diff --git
a/audiod.c
b/audiod.c
index
9029063
..
8b9f181
100644
(file)
--- a/
audiod.c
+++ b/
audiod.c
@@
-288,8
+288,7
@@
void __noreturn clean_exit(int status, const char *msg)
PARA_EMERG_LOG("%s\n", msg);
if (socket_name)
unlink(socket_name);
- if (stat_task->fd >= 0)
- close_stat_pipe();
+ close_stat_pipe();
exit(status);
}