This commit is contained in:
Igor Pavlov
2017-04-30 00:00:00 +00:00
committed by Kornel
parent 603abd5528
commit 2efa10565a
442 changed files with 15479 additions and 8525 deletions
+3 -3
View File
@@ -27,8 +27,8 @@ static void x86_Filter(Byte *data, UInt32 size, UInt32 processedSize, UInt32 tra
return;
size -= kResidue;
Byte save = data[size + 4];
data[size + 4] = 0xE8;
Byte save = data[(size_t)size + 4];
data[(size_t)size + 4] = 0xE8;
for (UInt32 i = 0;;)
{
@@ -57,7 +57,7 @@ static void x86_Filter(Byte *data, UInt32 size, UInt32 processedSize, UInt32 tra
}
}
data[size + 4] = save;
data[(size_t)size + 4] = save;
}