diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-11-15 17:45:31 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-11-15 17:45:31 +0100 |
| commit | 5fb9397521df32f601021b4314b8dcd7253a4a59 (patch) | |
| tree | dfe5157069e30a8ec15e6d7dc0dd1285c4789dac /src | |
| parent | f85e24dff8c268dca8e2f5240938c28365551537 (diff) | |
| download | box64-5fb9397521df32f601021b4314b8dcd7253a4a59.tar.gz box64-5fb9397521df32f601021b4314b8dcd7253a4a59.zip | |
[DYNAREC] Fixed a small issue with Segfault in Fillblock detection
Diffstat (limited to 'src')
| -rwxr-xr-x | src/dynarec/dynarec_arm64.c | 1 |
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; } |