1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-03 09:17:47 +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:
Adam 2017-08-18 21:14:09 +09:00
parent 9e4519440f
commit c460f8d1b4

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 {