diff options
| author | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-31 20:45:12 +0100 |
|---|---|---|
| committer | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-31 20:45:12 +0100 |
| commit | e7c59b26e1c04251c38df038e93990a29ae09808 (patch) | |
| tree | 788e5d792bc76e460c10a5c14d48fbdd73659d23 /src/downloadlistwidget.h | |
| parent | fd6345cd4e49a135dd833e8567cb5bbe6887ebb9 (diff) | |
Fix nullptr bug with download meta info
Diffstat (limited to 'src/downloadlistwidget.h')
| -rw-r--r-- | src/downloadlistwidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/downloadlistwidget.h b/src/downloadlistwidget.h index c8d4fe6e..bfe504aa 100644 --- a/src/downloadlistwidget.h +++ b/src/downloadlistwidget.h @@ -98,7 +98,7 @@ private slots: private:
DownloadManager *m_Manager;
- DownloadList *m_SourceModel;
+ DownloadList *m_SourceModel = 0;
int m_ContextRow;
};
|
