From cac3739a6b845c19faf8e6303717dc48686d39cf Mon Sep 17 00:00:00 2001 From: Richard Harrison Date: Tue, 29 Sep 2020 14:00:36 +0200 Subject: [PATCH] Emesary: add missing property initialisation to constructor --- simgear/nasal/cppbind/NasalEmesaryInterface.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/nasal/cppbind/NasalEmesaryInterface.hxx b/simgear/nasal/cppbind/NasalEmesaryInterface.hxx index df991aad..5f9e1665 100644 --- a/simgear/nasal/cppbind/NasalEmesaryInterface.hxx +++ b/simgear/nasal/cppbind/NasalEmesaryInterface.hxx @@ -63,7 +63,7 @@ namespace nasal class NasalMainLoopRecipient : public simgear::Emesary::IReceiver { public: - NasalMainLoopRecipient() : receiveCount(0) { + NasalMainLoopRecipient() : receiveCount(0), Active(false), CanWait(false) { simgear::Emesary::GlobalTransmitter::instance()->Register(*this); } virtual ~NasalMainLoopRecipient() {