We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3127e85 + 69e03e8 commit dfbe8cbCopy full SHA for dfbe8cb
lab5/antiasan.c
@@ -1,6 +1,7 @@
1
+#include <stdio.h>
2
#include <string.h>
3
+#include <sanitizer/asan_interface.h>
4
-void antiasan(unsigned long addr)
-{
5
-
+void antiasan(unsigned long addr) {
6
+ __asan_unpoison_memory_region((void *) addr, 0x200);
7
}
0 commit comments