Forgot to make CRC & Filesize check only if event file version >= 9

This commit is contained in:
Mark Watkins 2012-01-05 14:57:51 +10:00
parent 3e7684efac
commit 002fbd33e1

View File

@ -514,14 +514,16 @@ bool Session::LoadEvents(QString filename)
databytes=temp;
}
if (databytes.size()!=datasize) {
qDebug() << "File" << filename << "has returned wrong datasize";
return false;
}
quint16 crc=qChecksum(databytes.data(),databytes.size());
if (crc!=crc16) {
qDebug() << "CRC Doesn't match in" << filename;
return false;
if (version>=9) {
if (databytes.size()!=datasize) {
qDebug() << "File" << filename << "has returned wrong datasize";
return false;
}
quint16 crc=qChecksum(databytes.data(),databytes.size());
if (crc!=crc16) {
qDebug() << "CRC Doesn't match in" << filename;
return false;
}
}
QDataStream in(databytes);