1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

Fix an off-by-one in loadscpt

This commit is contained in:
jvoisin 2021-04-11 18:57:47 +02:00
parent b79f26380b
commit 54adb9cbed

View file

@ -30,7 +30,7 @@ namespace ESM
// The tmp buffer is a null-byte separated string list, we
// just have to pick out one string at a time.
char* str = tmp.data();
if (!str)
if (tmp.empty())
{
if (mVarNames.size() > 0)
Log(Debug::Warning) << "SCVR with no variable names";
@ -51,6 +51,7 @@ namespace ESM
ss << "\n Subrecord: " << "SCVR";
ss << "\n Offset: 0x" << std::hex << esm.getFileOffset();
Log(Debug::Verbose) << ss.str();
str = tmp.data();
}
for (size_t i = 0; i < mVarNames.size(); i++)