about summary refs log tree commit diff
path: root/frida_mode/src/persistent/persistent_arm32.c
diff options
context:
space:
mode:
authorWorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>2021-05-27 21:33:44 +0100
committerGitHub <noreply@github.com>2021-05-27 22:33:44 +0200
commitf677be5e86a096edbba74cb8c739e8b10850a379 (patch)
tree1335aaa0592d251926a1b0e62acf28ceaba2e41e /frida_mode/src/persistent/persistent_arm32.c
parent14178141dcdc1a81ea4f4461790ec87f60606985 (diff)
downloadafl++-f677be5e86a096edbba74cb8c739e8b10850a379.tar.gz
Support for AFL_FRIDA_PERSISTENT_RET (#941)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/src/persistent/persistent_arm32.c')
-rw-r--r--frida_mode/src/persistent/persistent_arm32.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/frida_mode/src/persistent/persistent_arm32.c b/frida_mode/src/persistent/persistent_arm32.c
index bc021ff3..6a3c06fa 100644
--- a/frida_mode/src/persistent/persistent_arm32.c
+++ b/frida_mode/src/persistent/persistent_arm32.c
@@ -68,5 +68,12 @@ void persistent_prologue(GumStalkerOutput *output) {
 
 }
 
+void persistent_epilogue(GumStalkerOutput *output) {
+
+  UNUSED_PARAMETER(output);
+  FATAL("Persistent mode not supported on this architecture");
+
+}
+
 #endif