1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-15 05:57:26 +03:00

gpt-auto-generator: don't return OOM on parentless devices

This commit is contained in:
Tomasz Torcz 2014-03-12 19:25:11 +01:00 committed by Lennart Poettering
parent 9d16d0c7d0
commit 9c4495ca56

View File

@ -395,7 +395,7 @@ static int enumerate_partitions(dev_t devnum) {
parent = udev_device_get_parent(d);
if (!parent)
return log_oom();
return 0;
/* Does it have a devtype? */
devtype = udev_device_get_devtype(parent);