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:
parent
d7c5c4f23e
commit
78b5a13f8a
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