1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-16 16:20:53 +00:00

Fix coverity warning in esm3/globalscript.cpp

This commit is contained in:
Petr Mikheev 2023-08-09 10:21:41 +02:00
parent a8ed567177
commit f5ddffa087

View File

@ -19,7 +19,11 @@ namespace ESM
mTargetId = esm.getHNORefId("TARG");
if (esm.peekNextSub("FRMR"))
mTargetRef = esm.getFormId(true, "FRMR");
esm.applyContentFileMapping(mTargetRef);
if (!esm.applyContentFileMapping(mTargetRef))
{
mTargetId = ESM::RefId();
mTargetRef = ESM::FormId();
}
}
void GlobalScript::save(ESMWriter& esm) const