mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 01:00:06 +01:00
[orbis-kernel] fix saving ipmi server name
This commit is contained in:
parent
8ecfc4979c
commit
a847e739fc
|
|
@ -120,7 +120,7 @@ public:
|
|||
std::lock_guard lock(m_sem_mtx);
|
||||
auto [it, inserted] = mIpmiServers.try_emplace(std::move(name), nullptr);
|
||||
if (inserted) {
|
||||
it->second = knew<IpmiServer>(name);
|
||||
it->second = knew<IpmiServer>(it->first);
|
||||
}
|
||||
|
||||
return {it->second.get(), inserted};
|
||||
|
|
|
|||
Loading…
Reference in a new issue