forked from qt-creator/qt-creator
Git: Fix crash
An asynchronous command deletes itself when it ends. Raw pointer is a bad idea. Task-number: QTCREATORBUG-15051 Change-Id: Ie2b3a90e308a4bb1e414f924a836d816abf1dfd1 Reviewed-by: Robert Loehning <robert.loehning@theqtcompany.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
506c0685a3
commit
a2bd8e11f6
@@ -134,7 +134,7 @@ protected:
|
||||
const QString m_directory;
|
||||
|
||||
private:
|
||||
VcsCommand *m_command;
|
||||
QPointer<VcsCommand> m_command;
|
||||
};
|
||||
|
||||
BaseController::BaseController(IDocument *document, const QString &dir) :
|
||||
|
Reference in New Issue
Block a user