diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-12-03 14:02:48 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-12-03 14:02:48 +0100 |
| commit | 93f29d8cd913495a279597c0dc5c8a15e6232e8e (patch) | |
| tree | c2913cac6f7ae2258d42e773f5d34b869d22359f /src/libtools | |
| parent | 0054dde600ad4b9ef3d552eb55a1870703d5454e (diff) | |
| download | box64-93f29d8cd913495a279597c0dc5c8a15e6232e8e.tar.gz box64-93f29d8cd913495a279597c0dc5c8a15e6232e8e.zip | |
Fix X64 build
Diffstat (limited to 'src/libtools')
| -rw-r--r-- | src/libtools/signal32.c | 1 | ||||
| -rw-r--r-- | src/libtools/signals.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/libtools/signal32.c b/src/libtools/signal32.c index e55c88f2..6dace456 100644 --- a/src/libtools/signal32.c +++ b/src/libtools/signal32.c @@ -494,6 +494,7 @@ void my_sigactionhandler_oldcode_32(int32_t sig, int simple, siginfo_t* info, vo #endif #else (void)ucntx; (void)cur_db; + void* pc = NULL; #endif // setup libc context stack frame, on caller stack frame = frame&~15; diff --git a/src/libtools/signals.c b/src/libtools/signals.c index d760ecf1..dd98e4c6 100644 --- a/src/libtools/signals.c +++ b/src/libtools/signals.c @@ -979,6 +979,7 @@ void my_sigactionhandler_oldcode(x64emu_t* emu, int32_t sig, int simple, siginfo #endif #else (void)ucntx; (void)cur_db; + void* pc = NULL; #endif // setup libc context stack frame, on caller stack frame = frame&~15; |