Merge pull request #3104 from Tilka/fix_warnings

Fix -Wuninitialized warnings
This commit is contained in:
flacs 2015-09-29 07:31:24 +02:00
commit 6a27f1bbf6
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,8 @@ public:
K key;
V *value = nullptr;
u32 value_size;
u32 entry_number;
u32 value_size = 0;
u32 entry_number = 0;
std::fstream::pos_type last_pos = m_file.tellg();