From 918fe6ddd884b873cdb0eddb850fe81fc55112d6 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 25 Jul 2018 20:57:47 +1000 Subject: [PATCH] Fix uninitialized context flags --- src/context.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context.hh b/src/context.hh index dfbd855c6..e1924a21d 100644 --- a/src/context.hh +++ b/src/context.hh @@ -137,7 +137,7 @@ private: friend struct ScopedEdition; - Flags m_flags; + Flags m_flags = Flags::None; SafePtr m_input_handler; SafePtr m_window;