(svn r10262) -Fix (r10258): some places that needed to be changed to uint64 were hidden/forgotten, which caused memory corruptions and that in caused all kinds of assertions to trigger.
This commit is contained in:
@@ -217,7 +217,7 @@ void SetDParamStr(uint n, const char *str)
|
||||
|
||||
void InjectDParam(int amount)
|
||||
{
|
||||
memmove(_decode_parameters + amount, _decode_parameters, sizeof(_decode_parameters) - amount * sizeof(uint32));
|
||||
memmove(_decode_parameters + amount, _decode_parameters, sizeof(_decode_parameters) - amount * sizeof(uint64));
|
||||
}
|
||||
|
||||
static const uint32 _divisor_table[] = {
|
||||
|
Reference in New Issue
Block a user