1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 04:15:31 +00:00

Merge pull request #938 from kpp/valgrind_check

Valgrind checks
This commit is contained in:
scrawl 2016-05-08 00:52:39 +02:00
commit 65024ee7f2
2 changed files with 8 additions and 4 deletions

View file

@ -107,6 +107,7 @@ namespace MWMechanics
mActionCooldown(0),
mStrength(),
mForceNoShortcut(false),
mShortcutFailPos(),
mLastActorPos(0,0,0),
mMovement(){}

View file

@ -9,10 +9,13 @@
namespace ESM
{
ESMWriter::ESMWriter()
: mStream(NULL)
, mEncoder (0)
, mRecordCount (0)
, mCounting (true)
: mRecords()
, mStream(NULL)
, mHeaderPos()
, mEncoder(NULL)
, mRecordCount(0)
, mCounting(true)
, mHeader()
{}
unsigned int ESMWriter::getVersion() const