mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: Uninitialized variable
This commit is contained in:
parent
82d8e04ab2
commit
4123e6149e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue