Seg fault!

This commit is contained in:
Your Name
2025-04-30 19:31:50 +12:00
parent 47d64a1a0d
commit 87ab33dce9
11 changed files with 84 additions and 89 deletions

View File

@ -188,7 +188,7 @@ void get_all_used_commands(std::set<std::string> &commands)
std::vector<ServerInfo> servers = get_configured_servers();
for (const auto& server : servers)
{
std::vector<dropshell::ServiceInfo> services = dropshell::get_server_services_info(server.name);
auto services = dropshell::get_server_services_info(server.name);
for (const auto& service : services)
commands.merge(dropshell::get_used_commands(server.name, service.service_name));
}