Fixed: Uninitialized variable

--HG--
branch : develop
This commit is contained in:
kervala 2016-12-19 15:44:08 +01:00
parent 8db7d75e7e
commit 408dbb64f6

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)
{