mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-04 18:06:41 +00:00
Don't log a warning for reading to the end of the subrecord
This commit is contained in:
parent
e3bb45fd61
commit
abb120b439
1 changed files with 12 additions and 9 deletions
|
@ -60,6 +60,8 @@ namespace ESM
|
|||
mVarNames[i] = std::string(str);
|
||||
str += mVarNames[i].size() + 1;
|
||||
if (str >= tmpEnd)
|
||||
{
|
||||
if(str > tmpEnd)
|
||||
{
|
||||
// SCVR subrecord is unused and variable names are determined
|
||||
// from the script source, so an overflow is not fatal.
|
||||
|
@ -70,6 +72,7 @@ namespace ESM
|
|||
ss << "\n Subrecord: " << "SCVR";
|
||||
ss << "\n Offset: 0x" << std::hex << esm.getFileOffset();
|
||||
Log(Debug::Verbose) << ss.str();
|
||||
}
|
||||
// Get rid of empty strings in the list.
|
||||
mVarNames.resize(i+1);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue