Skip to content
Snippets Groups Projects
Commit dca90578 authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

use of uninitialized variable

parent b0fb8ab5
No related branches found
No related tags found
1 merge request!316Resolves #343 GUI and Frame Refactor
......@@ -15,7 +15,7 @@ using std::function;
using ftl::ctrl::LogEvent;
Master::Master(Configurable *root, Universe *net)
: root_(root), net_(net) {
: root_(root), net_(net), active_(false) {
// Init system state
state_.paused = false;
......@@ -101,6 +101,8 @@ Master::Master(Configurable *root, Universe *net)
}
peerConfigurables_[peer].clear();
});
active_ = true;
}
Master::~Master() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment