diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-06-17 12:08:43 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-06-17 12:08:43 +0200 |
| commit | 1b47fd952caa889c252223b1996a06444d10e2fc (patch) | |
| tree | 5b45ad0b419a8106088ac9a5ca96590350ff6a3a /src/box64context.c | |
| parent | bf9e5b8e6e3b42768a787f1a3d3c1f423d1fb38f (diff) | |
| download | box64-1b47fd952caa889c252223b1996a06444d10e2fc.tar.gz box64-1b47fd952caa889c252223b1996a06444d10e2fc.zip | |
Added ability to trace and dump 32bits code
Diffstat (limited to 'src/box64context.c')
| -rwxr-xr-x | src/box64context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/box64context.c b/src/box64context.c index ff65391c..5c85f3fa 100755 --- a/src/box64context.c +++ b/src/box64context.c @@ -293,6 +293,8 @@ void FreeBox64Context(box64context_t** context) // stop trace now if(ctx->dec) DeleteX64TraceDecoder(&ctx->dec); + if(ctx->dec32) + DeleteX86TraceDecoder(&ctx->dec32); if(ctx->zydis) DeleteX64Trace(ctx); |