1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 08:27:46 +00:00

Fix segfault on 64bit

Upper portion of address data got lost when converting to int32_t and segfault when accessing them. This commit contains fix for it.
This commit is contained in:
Minho Kang 2017-08-18 21:14:09 +09:00
parent d7c5c4f23e
commit 78b5a13f8a

View file

@ -104,7 +104,7 @@ void BlowFish::initialize (BYTE key[], int32_t keybytes)
int32_t v10 = keybytes;
int32_t v9 = (uintptr_t)key;
uintptr_t v9 = (uintptr_t)key;
int32_t v8 = 0;
int32_t v11 = 0;
do {