mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-05 09:17:44 +03:00
libudev: fix move_later comparison
At the beginning move_later is set to -1, but it is set to different value only if expression !move_later is true.
This commit is contained in:
parent
90060fa660
commit
6faa3dcbb8
@ -300,7 +300,7 @@ _public_ struct udev_list_entry *udev_enumerate_get_list_entry(struct udev_enume
|
||||
/* skip to be delayed devices, and move the to
|
||||
* the point where the prefix changes. We can
|
||||
* only move one item at a time. */
|
||||
if (!move_later) {
|
||||
if (move_later == -1) {
|
||||
move_later_prefix = devices_delay_later(udev_enumerate->udev, entry->syspath);
|
||||
|
||||
if (move_later_prefix > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user