From 0f916d39b039fdc0b5baf9b5ab0754c0f11ec573 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Tue, 14 Jun 2016 10:43:53 +1000 Subject: Shorten prctl code a tiny bit. --- platform.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/platform.c b/platform.c index ee3e06914..e3722e4ae 100644 --- a/platform.c +++ b/platform.c @@ -226,8 +226,7 @@ platform_disable_tracing(int strict) { #if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE) /* Disable ptrace on Linux without sgid bit */ - if (prctl(PR_SET_DUMPABLE, 0) != 0) - if (strict) - fatal("unable to make the process undumpable"); + if (prctl(PR_SET_DUMPABLE, 0) != 0 && strict) + fatal("unable to make the process undumpable"); #endif } -- cgit v1.2.3