mirror of
https://github.com/systemd/systemd.git
synced 2026-08-08 17:10:55 +00:00
mount: fix assertion
https://bugzilla.redhat.com/show_bug.cgi?id=768523
This commit is contained in:
@@ -189,7 +189,7 @@ static int mount_add_mount_links(Mount *m) {
|
||||
if ((r = unit_add_dependency(UNIT(n), UNIT_REQUIRES, UNIT(m), true)) < 0)
|
||||
return r;
|
||||
|
||||
} else if (pm && path_startswith(pm->what, n->where)) {
|
||||
} else if (pm && pm->what && path_startswith(pm->what, n->where)) {
|
||||
|
||||
if ((r = unit_add_dependency(UNIT(m), UNIT_AFTER, UNIT(n), true)) < 0)
|
||||
return r;
|
||||
@@ -197,7 +197,7 @@ static int mount_add_mount_links(Mount *m) {
|
||||
if ((r = unit_add_dependency(UNIT(m), UNIT_REQUIRES, UNIT(n), true)) < 0)
|
||||
return r;
|
||||
|
||||
} else if (pn && path_startswith(pn->what, m->where)) {
|
||||
} else if (pn && pn->what && path_startswith(pn->what, m->where)) {
|
||||
|
||||
if ((r = unit_add_dependency(UNIT(n), UNIT_AFTER, UNIT(m), true)) < 0)
|
||||
return r;
|
||||
|
||||
Reference in New Issue
Block a user