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

Commit 5e798728 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "init: Do not invoke the ServiceList destructor when exiting" am: dfc88362 am: 701f00fd

parents 30e29e2e 701f00fd
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() {