mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Uninitialized variable
--HG-- branch : develop
This commit is contained in:
parent
8db7d75e7e
commit
408dbb64f6
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ public:
|
||||||
static SRes seekFunc(void *object, Int64 *pos, ESzSeek origin)
|
static SRes seekFunc(void *object, Int64 *pos, ESzSeek origin)
|
||||||
{
|
{
|
||||||
Q7zFile *me = (Q7zFile*)object;
|
Q7zFile *me = (Q7zFile*)object;
|
||||||
qint64 newPos;
|
qint64 newPos = 0;
|
||||||
|
|
||||||
switch(origin)
|
switch(origin)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue