diff options
| author | xctan <xctan@cirno.icu> | 2023-12-23 16:02:38 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-23 09:02:38 +0100 |
| commit | 6163f98020239f10e26b69d4a53e01d29c7279ea (patch) | |
| tree | d12f85712c087669a3c98ee03da2ef32afdfd4ef /src/tools/box64stack.c | |
| parent | 316b2fc98abe75bef52e366acd67bd8ae8981d1f (diff) | |
| download | box64-6163f98020239f10e26b69d4a53e01d29c7279ea.tar.gz box64-6163f98020239f10e26b69d4a53e01d29c7279ea.zip | |
Cleanup some code (#1157)
* Fix the size of random bytes in the auxiliary vector (AT_RANDOM) to 16 bytes * [ELFLOADER] Remove an unused statement
Diffstat (limited to 'src/tools/box64stack.c')
| -rw-r--r-- | src/tools/box64stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/box64stack.c b/src/tools/box64stack.c index 44596b98..d1c55d07 100644 --- a/src/tools/box64stack.c +++ b/src/tools/box64stack.c @@ -77,7 +77,7 @@ void SetupInitialStack(x64emu_t *emu) uintptr_t p_random = real_getauxval(25); if(!p_random) { for (int i=0; i<4; ++i) - Push64(emu, random()); + Push32(emu, random()); p_random = R_RSP; } // align |