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.
1 parent 461e1e5 commit ccf9c9eCopy full SHA for ccf9c9e
.vscode/settings.json
@@ -0,0 +1,5 @@
1
+{
2
+ "files.associations": {
3
+ "string.h": "c"
4
+ }
5
+}
lab5/antiasan.c
@@ -1,6 +1,7 @@
#include <string.h>
+#include <sanitizer/asan_interface.h>
void antiasan(unsigned long addr)
{
-
6
-}
+ __asan_unpoison_memory_region((void *)addr, 0x100);
7
0 commit comments