Fix buffer overrun in EDFParser.

Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
Sean Stangl 2014-04-09 15:47:23 -07:00 committed by Mark Watkins
parent 6e07dfad4e
commit 50c51c9a91
2 changed files with 13 additions and 11 deletions

View File

@ -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();
} }

View File

@ -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();