From 0603431ac84d9f604d2fe78f5a932266db5e303e Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Thu, 10 Jan 2019 15:16:33 -0800 Subject: [PATCH] initialize _logger with null pointer --- interface/src/Application.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Application.h b/interface/src/Application.h index b1077a523a..4c6d45b8c3 100644 --- a/interface/src/Application.h +++ b/interface/src/Application.h @@ -594,7 +594,7 @@ private: bool _aboutToQuit { false }; - FileLogger* _logger; + FileLogger* _logger { nullptr }; bool _previousSessionCrashed;