mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
core/mount: fstype may be NULL
This commit is contained in:
parent
17b6f896b4
commit
74b1731c75
@ -494,7 +494,7 @@ static int mount_add_default_dependencies(Mount *m) {
|
||||
return r;
|
||||
|
||||
/* If this is a tmpfs mount then we have to unmount it before we try to deactivate swaps */
|
||||
if (streq(p->fstype, "tmpfs")) {
|
||||
if (streq_ptr(p->fstype, "tmpfs")) {
|
||||
r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, SPECIAL_SWAP_TARGET, NULL, true, mask);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
Loading…
Reference in New Issue
Block a user