mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-27 16:41:38 +00:00
Merge branch 'overflow_spam' into 'master'
Don't log a warning for reading to the end of the subrecord See merge request OpenMW/openmw!786
This commit is contained in:
commit
91e94b221a
1 changed files with 12 additions and 9 deletions
|
@ -61,15 +61,18 @@ namespace ESM
|
|||
str += mVarNames[i].size() + 1;
|
||||
if (str >= tmpEnd)
|
||||
{
|
||||
// SCVR subrecord is unused and variable names are determined
|
||||
// from the script source, so an overflow is not fatal.
|
||||
std::stringstream ss;
|
||||
ss << "String table overflow";
|
||||
ss << "\n File: " << esm.getName();
|
||||
ss << "\n Record: " << esm.getContext().recName.toString();
|
||||
ss << "\n Subrecord: " << "SCVR";
|
||||
ss << "\n Offset: 0x" << std::hex << esm.getFileOffset();
|
||||
Log(Debug::Verbose) << ss.str();
|
||||
if(str > tmpEnd)
|
||||
{
|
||||
// SCVR subrecord is unused and variable names are determined
|
||||
// from the script source, so an overflow is not fatal.
|
||||
std::stringstream ss;
|
||||
ss << "String table overflow";
|
||||
ss << "\n File: " << esm.getName();
|
||||
ss << "\n Record: " << esm.getContext().recName.toString();
|
||||
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