mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-23 14:34:25 +00:00
fixed testcase
This commit is contained in:
@ -10,11 +10,10 @@
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
char str[100]={ };
|
||||
char str[100];
|
||||
read(0, str, 100);
|
||||
int *ptr = NULL;
|
||||
if( str[0] == 'P') {
|
||||
*ptr = 123;
|
||||
if( str[6] == 'A') {
|
||||
abort();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user