GB Video: Prevent BCPS and OCPS from going negative

This commit is contained in:
Jeffrey Pfau 2016-09-13 08:52:41 -07:00
parent 54cd85d236
commit 4c38f76956
2 changed files with 10 additions and 0 deletions

View File

@ -142,6 +142,14 @@ bool GBDeserialize(struct GB* gb, const struct GBSerializedState* state) {
mLOG(GB_STATE, WARN, "Savestate is corrupted: DMA destination is out of range");
error = true;
}
LOAD_16LE(ucheck16, 0, &state->video.bcpIndex);
if (ucheck16 >= 0x40) {
mLOG(GB_STATE, WARN, "Savestate is corrupted: BCPS is out of range");
}
LOAD_16LE(ucheck16, 0, &state->video.ocpIndex);
if (ucheck16 >= 0x40) {
mLOG(GB_STATE, WARN, "Savestate is corrupted: OCPS is out of range");
}
if (error) {
return false;
}

View File

@ -482,7 +482,9 @@ void GBVideoDeserialize(struct GBVideo* video, const struct GBSerializedState* s
video->bcpIncrement = GBSerializedVideoFlagsGetBcpIncrement(flags);
video->ocpIncrement = GBSerializedVideoFlagsGetOcpIncrement(flags);
LOAD_16LE(video->bcpIndex, 0, &state->video.bcpIndex);
video->bcpIndex &= 0x3F;
LOAD_16LE(video->ocpIndex, 0, &state->video.ocpIndex);
video->ocpIndex &= 0x3F;
size_t i;
for (i = 0; i < 64; ++i) {