sd-device: make sd_device_get_is_initialized() not return -ENOENT

This commit is contained in:
Yu Watanabe 2022-07-11 12:02:04 +02:00
parent 8924cbf34a
commit 591c186f2f

View file

@ -1589,6 +1589,9 @@ _public_ int sd_device_get_is_initialized(sd_device *device) {
assert_return(device, -EINVAL);
r = device_read_db(device);
if (r == -ENOENT)
/* The device may be already removed or renamed. */
return false;
if (r < 0)
return r;