We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f1137a commit 1faff1cCopy full SHA for 1faff1c
lab5/antiasan.c
@@ -1,5 +1,9 @@
1
// TODO:
2
void antiasan(unsigned long addr)
3
{
4
+#include <sanitizer/asan_interface.h>
5
6
+void antiasan(unsigned long address) {
7
+
8
+ __asan_unpoison_memory_region((void *)address, 1);
9
}
0 commit comments