Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dfc88362 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "init: Do not invoke the ServiceList destructor when exiting"

parents a8ff9a49 c41a4826
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,8 +24,8 @@ namespace init {
ServiceList::ServiceList() {}

ServiceList& ServiceList::GetInstance() {
    static ServiceList instance;
    return instance;
    static ServiceList* instance = new ServiceList;
    return *instance;
}

size_t ServiceList::CheckAllCommands() {