fix on_init crash #3

Merged
tqcq merged 9 commits from feat/support_fiber into master 2024-07-01 09:47:56 +08:00
Showing only changes of commit dc88d60c16 - Show all commits

View File

@ -267,6 +267,10 @@ public:
for (auto &&c : clients_) {
c->Stop();
}
for (auto &&c : clients_) {
c.reset();
}
}
private: