mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Forgot to make CRC & Filesize check only if event file version >= 9
This commit is contained in:
parent
3e7684efac
commit
002fbd33e1
@ -514,14 +514,16 @@ bool Session::LoadEvents(QString filename)
|
|||||||
databytes=temp;
|
databytes=temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (databytes.size()!=datasize) {
|
if (version>=9) {
|
||||||
qDebug() << "File" << filename << "has returned wrong datasize";
|
if (databytes.size()!=datasize) {
|
||||||
return false;
|
qDebug() << "File" << filename << "has returned wrong datasize";
|
||||||
}
|
return false;
|
||||||
quint16 crc=qChecksum(databytes.data(),databytes.size());
|
}
|
||||||
if (crc!=crc16) {
|
quint16 crc=qChecksum(databytes.data(),databytes.size());
|
||||||
qDebug() << "CRC Doesn't match in" << filename;
|
if (crc!=crc16) {
|
||||||
return false;
|
qDebug() << "CRC Doesn't match in" << filename;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QDataStream in(databytes);
|
QDataStream in(databytes);
|
||||||
|
Loading…
Reference in New Issue
Block a user