Fix daily crash with day restructure change

This commit is contained in:
Mark Watkins 2014-08-21 04:46:19 +10:00
parent 672b111339
commit f229eefd22
2 changed files with 3 additions and 2 deletions

View File

@ -460,7 +460,7 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
buf[i] = (buf[i] & 0x7f) | (msb & 0x01 ? 0x80 : 0);
}
quint16 pi = *(quint16*)(&buf[4]);
quint16 pi = buffer.data()[idx+4] | buffer.data()[idx+5] << 8;
pulse = buf[3];
quint8 spo2 = buf[2];

View File

@ -1470,7 +1470,8 @@ void Daily::Load(QDate date)
quint32 chans = schema::SPAN | schema::FLAG | schema::MINOR_FLAG;
if (p_profile->general->showUnknownFlags()) chans |= schema::UNKNOWN;
QList<ChannelID> available = day->getSortedMachineChannels(chans);
QList<ChannelID> available;
if (day) available.append(day->getSortedMachineChannels(chans));
for (int i=0; i < available.size(); ++i) {
ChannelID code = available.at(i);