From 04e5b6439de973d743e142de0a15d75ac9743590 Mon Sep 17 00:00:00 2001 From: Frank Kunz Date: Mon, 15 Feb 2021 21:36:06 +0100 Subject: [PATCH] Fix race condition when table is started onTick() segfaults when m_iMultiplier is not initilized. Signed-off-by: Frank Kunz --- data/gnu/ModuleGnu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/gnu/ModuleGnu.cpp b/data/gnu/ModuleGnu.cpp index c9a05fe..fabf986 100644 --- a/data/gnu/ModuleGnu.cpp +++ b/data/gnu/ModuleGnu.cpp @@ -69,7 +69,7 @@ class GnuBehavior : public Behavior { m_iMultiplier{} { char name[32]; - //this->clear(); + this->clear(); Loader * loader = Loader::getInstance(); m_sigBump = loader->getSignal("bump"); int i = 0;