about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-11-15 17:45:31 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-11-15 17:45:31 +0100
commit5fb9397521df32f601021b4314b8dcd7253a4a59 (patch)
treedfe5157069e30a8ec15e6d7dc0dd1285c4789dac /src
parentf85e24dff8c268dca8e2f5240938c28365551537 (diff)
downloadbox64-5fb9397521df32f601021b4314b8dcd7253a4a59.tar.gz
box64-5fb9397521df32f601021b4314b8dcd7253a4a59.zip
[DYNAREC] Fixed a small issue with Segfault in Fillblock detection
Diffstat (limited to 'src')
-rwxr-xr-xsrc/dynarec/dynarec_arm64.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dynarec/dynarec_arm64.c b/src/dynarec/dynarec_arm64.c
index bcdcb16d..995e4633 100755
--- a/src/dynarec/dynarec_arm64.c
+++ b/src/dynarec/dynarec_arm64.c
@@ -526,6 +526,7 @@ void* FillBlock64(dynablock_t* block, uintptr_t addr) {
     helper.sons_x64 = NULL;
     free(helper.sons_arm);
     helper.sons_arm = NULL;
+    current_helper = NULL;
     //block->done = 1;
     return (void*)block;
 }