Skip to content
Snippets Groups Projects
Commit f4916fe4 authored by Matteo Pignataro's avatar Matteo Pignataro Committed by Emilio Corigliano
Browse files

[ActiveObject] Fixes non initialized flags in ActiveObject

parent 611104f6
Branches
Tags
No related merge requests found
......@@ -92,8 +92,8 @@ protected:
miosix::Thread* thread = nullptr; ///< Gives access to the thread object
std::atomic<bool> stopFlag;
std::atomic<bool> running;
std::atomic<bool> stopFlag{false};
std::atomic<bool> running{false};
private:
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment