1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 09:45:36 +00:00

Fix uninitialized values in ESMWriter::save

This commit is contained in:
Roman Proskuryakov 2016-05-07 20:40:21 +03:00
parent 964ea78367
commit 1e7d573f24

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