mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Fix buffer overflow in prs1 importer.
Signed-off-by: Richard Freeman <rich0@gentoo.org>
This commit is contained in:
parent
fec3ba0e88
commit
c698fd1932
@ -1186,6 +1186,12 @@ bool PRS1Loader::OpenFile(Machine *mach, QString filename)
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
qint64 filesize=f.size();
|
qint64 filesize=f.size();
|
||||||
|
|
||||||
|
if (filesize>max_load_buffer_size) {
|
||||||
|
qWarning() << "Waveform too big, increase max_load_buffer_size in PRS1Loader sourcecode" << filename;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (f.read((char *)m_buffer,filesize)<filesize) {
|
if (f.read((char *)m_buffer,filesize)<filesize) {
|
||||||
qDebug() << "Couldn't read full file" << filename;
|
qDebug() << "Couldn't read full file" << filename;
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user