mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Fix buffer overrun in EDFParser.
Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
parent
6e07dfad4e
commit
50c51c9a91
@ -80,19 +80,21 @@ EDFParser::~EDFParser()
|
|||||||
}
|
}
|
||||||
qint16 EDFParser::Read16()
|
qint16 EDFParser::Read16()
|
||||||
{
|
{
|
||||||
unsigned char *buf=(unsigned char *)buffer;
|
if ((pos + sizeof(qint16)) > filesize)
|
||||||
if (pos>=filesize) return 0;
|
return 0;
|
||||||
qint16 res=*(qint16 *)&buf[pos];
|
|
||||||
//qint16 res=(buf[pos] ^128)<< 8 | buf[pos+1] ^ 128;
|
qint16 res = *(qint16 *)&buffer[pos];
|
||||||
pos+=2;
|
pos += sizeof(qint16);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
QString EDFParser::Read(int si)
|
QString EDFParser::Read(unsigned n)
|
||||||
{
|
{
|
||||||
|
if ((pos + n) > filesize)
|
||||||
|
return "";
|
||||||
|
|
||||||
QString str;
|
QString str;
|
||||||
if (pos>=filesize) return "";
|
for (unsigned i = 0; i < n; i++) {
|
||||||
for (int i=0;i<si;i++) {
|
str += buffer[pos++];
|
||||||
str+=buffer[pos++];
|
|
||||||
}
|
}
|
||||||
return str.trimmed();
|
return str.trimmed();
|
||||||
}
|
}
|
||||||
|
@ -116,8 +116,8 @@ public:
|
|||||||
//! \brief Open the EDF+ file, and read it's header
|
//! \brief Open the EDF+ file, and read it's header
|
||||||
bool Open(QString name);
|
bool Open(QString name);
|
||||||
|
|
||||||
//! \brief Read si bytes of 8 bit data from the EDF+ data stream
|
//! \brief Read n bytes of 8 bit data from the EDF+ data stream
|
||||||
QString Read(int si);
|
QString Read(unsigned n);
|
||||||
|
|
||||||
//! \brief Read 16 bit word of data from the EDF+ data stream
|
//! \brief Read 16 bit word of data from the EDF+ data stream
|
||||||
qint16 Read16();
|
qint16 Read16();
|
||||||
|
Loading…
Reference in New Issue
Block a user