mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix memory access error in certain summary files.
This currently doesn't make the parsing more complete, it just bails rather than running off the end of memory.
This commit is contained in:
parent
a603f9e189
commit
9da60239c8
@ -2674,6 +2674,10 @@ bool PRS1Import::ParseSummaryF5V3()
|
||||
session->settings[CPAP_PSMin] = minps/10.0f;
|
||||
session->settings[CPAP_PSMax] = maxps/10.0f;
|
||||
|
||||
if (hbdata[4].size() < 2) {
|
||||
qDebug() << "summary missing duration section:" << session->session();
|
||||
return false;
|
||||
}
|
||||
unsigned char * durBlock = (unsigned char *)hbdata[4].data();
|
||||
summary_duration = durBlock[0] | durBlock[1] << 8;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user