forked from suyu/suyu
nvhost_vic: use map erase by key
This commit is contained in:
parent
32f623e029
commit
04867e2456
1 changed files with 1 additions and 4 deletions
|
@ -78,10 +78,7 @@ void nvhost_vic::OnClose(DeviceFD fd) {
|
||||||
if (iter != host1x_file.fd_to_id.end()) {
|
if (iter != host1x_file.fd_to_id.end()) {
|
||||||
system.GPU().ClearCdmaInstance(iter->second);
|
system.GPU().ClearCdmaInstance(iter->second);
|
||||||
}
|
}
|
||||||
auto it = sessions.find(fd);
|
sessions.erase(fd);
|
||||||
if (it != sessions.end()) {
|
|
||||||
sessions.erase(it);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Service::Nvidia::Devices
|
} // namespace Service::Nvidia::Devices
|
||||||
|
|
Loading…
Reference in a new issue