mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix memory bug in ResMed loader.
This commit is contained in:
parent
c1aa016a46
commit
74de65778e
@ -800,7 +800,7 @@ int PeekAnnotations(const QString & path, quint32 &start, quint32 &end)
|
||||
|
||||
}
|
||||
|
||||
while ((data[pos] == 0) && (pos < recs)) { pos++; }
|
||||
while ((pos < recs) && (data[pos] == 0)) { pos++; }
|
||||
|
||||
if (pos >= recs) { break; }
|
||||
}
|
||||
@ -2247,7 +2247,7 @@ bool ResmedLoader::LoadCSL(Session *sess, const QString & path)
|
||||
// pos++;
|
||||
}
|
||||
|
||||
while ((data[pos] == 0) && (pos < recs)) { pos++; }
|
||||
while ((pos < recs) && (data[pos] == 0)) { pos++; }
|
||||
|
||||
if (pos >= recs) { break; }
|
||||
}
|
||||
@ -2423,7 +2423,7 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path)
|
||||
// pos++;
|
||||
}
|
||||
|
||||
while ((data[pos] == 0) && (pos < recs)) { pos++; }
|
||||
while ((pos < recs) && (data[pos] == 0)) { pos++; }
|
||||
|
||||
if (pos >= recs) { break; }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user