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:
parent
964ea78367
commit
1e7d573f24
1 changed files with 7 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue