From d25a12404fd8d919121d5d131c0a933e58a625c0 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Mon, 12 Dec 2016 10:31:50 +0100 Subject: [PATCH] AbstractProcessStep: Initialize future interface pointer Change-Id: I57d0ab6add9d0c3e325447dfc5a8dfe40dd3a770 Reviewed-by: Tim Jenssen --- src/plugins/projectexplorer/abstractprocessstep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/abstractprocessstep.h b/src/plugins/projectexplorer/abstractprocessstep.h index 847a2f4208a..bceb5c9d3f5 100644 --- a/src/plugins/projectexplorer/abstractprocessstep.h +++ b/src/plugins/projectexplorer/abstractprocessstep.h @@ -89,7 +89,7 @@ private: void outputAdded(const QString &string, BuildStep::OutputFormat format); QTimer m_timer; - QFutureInterface *m_futureInterface; + QFutureInterface *m_futureInterface = nullptr; std::unique_ptr m_process; std::unique_ptr m_outputParserChain; ProcessParameters m_param;