Shorten prctl code a tiny bit.

This commit is contained in:
Darren Tucker 2016-06-14 10:43:53 +10:00
parent 0fb7f59853
commit 0f916d39b0
1 changed files with 2 additions and 3 deletions

View File

@ -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
}