mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 08:58:22 -04:00
Initialize previously uninitialized scalar.
This commit is contained in:
parent
30a840ceb0
commit
b9dbf668f3
1 changed files with 3 additions and 2 deletions
|
@ -37,8 +37,9 @@ class JobThread : public QThread
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
JobThread( JobQueue* queue )
|
JobThread( JobQueue* queue )
|
||||||
: QThread( queue )
|
: QThread( queue )
|
||||||
, m_queue( queue )
|
, m_queue( queue )
|
||||||
|
, m_jobIndex( 0 )
|
||||||
{
|
{
|
||||||
#ifdef WITH_PYTHON
|
#ifdef WITH_PYTHON
|
||||||
new CalamaresPython::Helper( this );
|
new CalamaresPython::Helper( this );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue