- Unchecked return value from library
- Remove unnecessary header
Change-Id: I9a31cb772f6fdd7a64b006488091830b8502daf0
Name: mused
Summary: A multimedia daemon
-Version: 0.3.146
+Version: 0.3.147
Release: 0
Group: System/Libraries
License: Apache-2.0
LOGE("unable to set CLO_EXEC on log fd %d: %s", log->fd, err_msg);
}
- _ms_fd_set_block(log->fd);
+ if (_ms_fd_set_block(log->fd) != 0)
+ LOGE("[%d] _ms_fd_set_block is failed", log->fd);
}
static void _ms_log_cache_latest_msg(ms_log_t *log, int pid, char *msg)
#include "muse_server_private.h"
#include <sys/file.h>
-#include <sys/syscall.h>
#include <gst/gst.h>
#include <syslog.h>
#include <malloc.h>
*/
#include "muse_server_private.h"
-#include <execinfo.h>
#include <dlfcn.h>
static struct sigaction ms_segv_old_action;