Fixed: Uninitialized variable

This commit is contained in:
kervala 2016-12-19 15:44:08 +01:00
parent 82d8e04ab2
commit 4123e6149e

View file

@ -213,7 +213,7 @@ public:
static SRes seekFunc(void *object, Int64 *pos, ESzSeek origin)
{
Q7zFile *me = (Q7zFile*)object;
qint64 newPos;
qint64 newPos = 0;
switch(origin)
{