]> git.proxmox.com Git - proxmox-backup.git/commit
don't call contains_key() before remove()
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Fri, 28 Jun 2024 07:33:23 +0000 (09:33 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Fri, 28 Jun 2024 07:33:23 +0000 (09:33 +0200)
commit42c6224f92f131f38875dcf5e12a0ae293205bc7
tree35529dbc37b51eac015cb088b9b8702d562b1f85
parentf4130d531fd22ed82b1643808897742777e61150
don't call contains_key() before remove()

HashMap::remove() returns the value it removes as an Option<>, so
instead of first checking if the key exists before removing it, just
try to remove it and use the returned Option<> to test whether we
should bail!().

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
src/api2/access/user.rs
src/api2/config/media_pool.rs
src/api2/config/remote.rs
src/api2/config/traffic_control.rs