aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJP Abgrall <jpa@google.com>2012-11-12 11:59:43 -0800
committerGlenn Kasten <gkasten@google.com>2012-11-26 07:45:01 -0800
commit42ea6673b74e0ee9ad17f5462dc171fbe1491137 (patch)
treea6f6abcbc8e3388688b20057dff5992e1a12b58b
parente07e0d31f48d951e0f03ba254d4754810732c241 (diff)
downloadiptables-42ea6673b74e0ee9ad17f5462dc171fbe1491137.tar.gz
During bugreports mostly, when adb goes away it leads to apps crashing because their output stream got closed. Let's just ignore it. Bug: 6447319 Change-Id: I1b293ebef737014162edebd5fd9bf254345b2ce8
-rw-r--r--iptables/iptables-standalone.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/iptables/iptables-standalone.c b/iptables/iptables-standalone.c
index 87f1d31a..6cf8483a 100644
--- a/iptables/iptables-standalone.c
+++ b/iptables/iptables-standalone.c
@@ -34,6 +34,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
+#include <signal.h>
#include <string.h>
#include <iptables.h>
#include "iptables-multi.h"
@@ -50,6 +51,8 @@ main(int argc, char *argv[])
char *table = "filter";
struct iptc_handle *handle = NULL;
+ signal(SIGPIPE, SIG_IGN);
+
iptables_globals.program_name = "iptables";
ret = xtables_init_all(&iptables_globals, NFPROTO_IPV4);
if (ret < 0) {