diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-11-06 16:09:38 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-11-06 16:09:38 +0100 |
| commit | cd55c12e44f7cbfd048dbdd3cf9ef2b5b06bfa93 (patch) | |
| tree | 8c593a4fdcee1193afbdaa6ba5624fd8ad334ee2 /src/wrapped/wrappedldlinux.c | |
| parent | cb2cf7c9b1deda43323877caa429f65caefeab3a (diff) | |
| download | box64-cd55c12e44f7cbfd048dbdd3cf9ef2b5b06bfa93.tar.gz box64-cd55c12e44f7cbfd048dbdd3cf9ef2b5b06bfa93.zip | |
Added a few wrapped function and fixed some other (for Steam)
Diffstat (limited to 'src/wrapped/wrappedldlinux.c')
| -rw-r--r-- | src/wrapped/wrappedldlinux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedldlinux.c b/src/wrapped/wrappedldlinux.c index 90ec1b23..cd2ee420 100644 --- a/src/wrapped/wrappedldlinux.c +++ b/src/wrapped/wrappedldlinux.c @@ -31,7 +31,7 @@ EXPORT void* my___tls_get_addr(void* p) EXPORT void* my___libc_stack_end; void stSetup(box64context_t* context) { - my___libc_stack_end = context->stack; // is this the end, or should I add stasz? + my___libc_stack_end = context->stack + context->stacksz; } #ifdef STATICBUILD |