mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-03 13:47:04 +03:00
udev-builtin: path_id - don't pass NULL to udev_device_get_parent()
Being explicit about this makes the code easier to follow IMHO.
This commit is contained in:
parent
3b64e4d4f4
commit
28541a3d7c
@ -665,7 +665,8 @@ static int builtin_path_id(struct udev_device *dev, int argc, char *argv[], bool
|
||||
supported_parent = true;
|
||||
}
|
||||
|
||||
parent = udev_device_get_parent(parent);
|
||||
if (parent)
|
||||
parent = udev_device_get_parent(parent);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user