-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
push to stable #1798
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
push to stable #1798
Conversation
Fix MAX_PARAMS_NUM define.
remove extra limits.h in afl-ld-lto for BSD
Increase dummy map size
hexcoder-
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apart from two small nits, I approve it.
- The typo was fixed by myself.
- The MAP_SIZE copy-and-paste change I leave to you.
| static GHashTable *coverage_blocks = NULL; | ||
|
|
||
| __attribute__((aligned(0x1000))) static guint8 area_ptr_dummy[MAP_SIZE]; | ||
| __attribute__((aligned(0x1000))) static guint8 area_ptr_dummy[2UL << 20]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now we have two size definitions '2UL << 20' in instrument_arm32.cpp and ...64.cpp (before we had one definition MAP_SIZE). I prefer the one definition rule.
No description provided.