diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-09-08 20:45:12 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-09-08 20:45:12 +0200 |
| commit | 464fdc3ebe5816c281b0cf9e1960cb33386e29e9 (patch) | |
| tree | 9edfde55580db30db5abfcbf92fb4fee81f7b940 /src/wrapped32 | |
| parent | 6b9ed18286d9296bf91a98619e84ae1ace6a9ba8 (diff) | |
| download | box64-464fdc3ebe5816c281b0cf9e1960cb33386e29e9.tar.gz box64-464fdc3ebe5816c281b0cf9e1960cb33386e29e9.zip | |
[BOX32] Various small improvments on box32, mostly on memory tracking
Diffstat (limited to 'src/wrapped32')
| -rwxr-xr-x | src/wrapped32/wrappedlibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped32/wrappedlibc.c b/src/wrapped32/wrappedlibc.c index a43ca311..8665f593 100755 --- a/src/wrapped32/wrappedlibc.c +++ b/src/wrapped32/wrappedlibc.c @@ -321,7 +321,7 @@ static void* findftwFct(void* fct) static uintptr_t my32_ftw64_fct_##A = 0; \ static int my32_ftw64_##A(void* fpath, void* sb, int flag) \ { \ - struct i386_stat64 i386st; \ + static struct i386_stat64 i386st; \ UnalignStat64_32(sb, &i386st); \ return (int)RunFunctionFmt(my32_ftw64_fct_##A, "ppi", fpath, &i386st, flag); \ } |