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:
parent
9e4519440f
commit
c460f8d1b4
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue