diff options
author | Elliott Hughes <enh@google.com> | 2016-02-19 10:41:17 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2016-02-19 10:41:17 -0800 |
commit | 6da1353863dea7ed6835bd776a0cf4a49d12f910 (patch) | |
tree | e1b2e971ea6aab3996bad1ece55e25c0a82c2f89 /debuggerd/debuggerd.cpp | |
parent | 2773d4f96a8e9f06710e36f7c33459eeaa5cb23a (diff) |
Remove dead code from debuggerd.
system/core/debuggerd/debuggerd.cpp:683:5: warning: Value stored to 'logsocket' is never read
logsocket = -1;
^ ~~
Bug: http://b/27264392
Change-Id: I8eab8a02b67f219c32aea49e4d4957e5642df38f
Diffstat (limited to 'debuggerd/debuggerd.cpp')
-rw-r--r-- | debuggerd/debuggerd.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/debuggerd/debuggerd.cpp b/debuggerd/debuggerd.cpp index 8efbacc99..294bda90b 100644 --- a/debuggerd/debuggerd.cpp +++ b/debuggerd/debuggerd.cpp @@ -678,13 +678,6 @@ static int do_server() { // Ignore failed writes to closed sockets signal(SIGPIPE, SIG_IGN); - int logsocket = socket_local_client("logd", ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_DGRAM); - if (logsocket < 0) { - logsocket = -1; - } else { - fcntl(logsocket, F_SETFD, FD_CLOEXEC); - } - struct sigaction act; act.sa_handler = SIG_DFL; sigemptyset(&act.sa_mask); |