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