mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 00:48: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
|
||||
public:
|
||||
JobThread( JobQueue* queue )
|
||||
: QThread( queue )
|
||||
, m_queue( queue )
|
||||
: QThread( queue )
|
||||
, m_queue( queue )
|
||||
, m_jobIndex( 0 )
|
||||
{
|
||||
#ifdef WITH_PYTHON
|
||||
new CalamaresPython::Helper( this );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue