diff options
author | Willem Jan Palenstijn | 2017-02-26 17:00:16 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2017-02-27 16:02:20 +0100 |
commit | 8bac8836b11f12b837eb88327d183103fb866c89 (patch) | |
tree | 1e4a8433bc6fbfcb5cec9f9073a8d8638a9b3297 | |
parent | 0c640239fdf4525126a98f4429c38cf83127ab36 (diff) | |
download | scummvm-rg350-8bac8836b11f12b837eb88327d183103fb866c89.tar.gz scummvm-rg350-8bac8836b11f12b837eb88327d183103fb866c89.tar.bz2 scummvm-rg350-8bac8836b11f12b837eb88327d183103fb866c89.zip |
SCI: Fix up readString writing into too small buffer
This fixes QfG4 character import, which specifies a size of 52 for a
buffer of size 40.
-rw-r--r-- | engines/sci/engine/kfile.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/sci/engine/kfile.cpp b/engines/sci/engine/kfile.cpp index 25483b6507..6f9aa0d998 100644 --- a/engines/sci/engine/kfile.cpp +++ b/engines/sci/engine/kfile.cpp @@ -627,6 +627,21 @@ reg_t kFileIOReadString(EngineState *s, int argc, reg_t *argv) { bytesRead = fgets_wrapper(s, buf, maxsize, handle); + // Fix up size too large for destination. + SegmentRef dest_r = s->_segMan->dereference(argv[0]); + if (!dest_r.isValid()) { + error("kFileIO(readString): invalid destination %04x:%04x", PRINT_REG(argv[0])); + } else if ((int)bytesRead > dest_r.maxSize) { + error("kFileIO(readString) attempting to read %u bytes into buffer of size %u", bytesRead, dest_r.maxSize); + } else if (maxsize > dest_r.maxSize) { + // This happens at least in the QfG4 character import. + // CHECKME: We zero the remainder of the dest buffer, while + // at least several (and maybe all) SSCI interpreters didn't do this. + // Therefore this warning is presumably no problem. + warning("kFileIO(readString) attempting to copy %u bytes into buffer of size %u (%u/%u bytes actually read)", maxsize, dest_r.maxSize, bytesRead, maxsize); + maxsize = dest_r.maxSize; + } + s->_segMan->memcpy(argv[0], (const byte*)buf, maxsize); delete[] buf; return bytesRead ? argv[0] : NULL_REG; |