mirror of
https://github.com/OpenMW/openmw.git
synced 2025-05-04 21:41:28 +00:00
Fix uninitialized values in ESMWriter::save
This commit is contained in:
parent
964ea78367
commit
1e7d573f24
1 changed files with 7 additions and 4 deletions
|
@ -9,10 +9,13 @@
|
||||||
namespace ESM
|
namespace ESM
|
||||||
{
|
{
|
||||||
ESMWriter::ESMWriter()
|
ESMWriter::ESMWriter()
|
||||||
: mStream(NULL)
|
: mRecords()
|
||||||
, mEncoder (0)
|
, mStream(NULL)
|
||||||
, mRecordCount (0)
|
, mHeaderPos()
|
||||||
, mCounting (true)
|
, mEncoder(NULL)
|
||||||
|
, mRecordCount(0)
|
||||||
|
, mCounting(true)
|
||||||
|
, mHeader()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
unsigned int ESMWriter::getVersion() const
|
unsigned int ESMWriter::getVersion() const
|
||||||
|
|
Loading…
Reference in a new issue