mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 03:18:07 +00:00
code format
This commit is contained in:
@ -36,13 +36,11 @@ static void at_exit() {
|
||||
int i;
|
||||
char *ptr = getenv("__AFL_TARGET_PID1");
|
||||
|
||||
if (ptr && *ptr && (i = atoi(ptr)) > 0)
|
||||
kill(i, SIGKILL);
|
||||
if (ptr && *ptr && (i = atoi(ptr)) > 0) kill(i, SIGKILL);
|
||||
|
||||
ptr = getenv("__AFL_TARGET_PID2");
|
||||
|
||||
if (ptr && *ptr && (i = atoi(ptr)) > 0)
|
||||
kill(i, SIGKILL);
|
||||
if (ptr && *ptr && (i = atoi(ptr)) > 0) kill(i, SIGKILL);
|
||||
|
||||
// anything else? shared memory?
|
||||
|
||||
|
Reference in New Issue
Block a user