cryptsetup: use strjoin() for concatenating strings

This commit is contained in:
Lennart Poettering 2020-11-04 18:14:54 +01:00
parent c7faa23235
commit 090685b5a1
1 changed files with 2 additions and 1 deletions

View File

@ -353,7 +353,8 @@ static char *disk_mount_point(const char *label) {
/* Yeah, we don't support native systemd unit files here for now */
if (asprintf(&device, "/dev/mapper/%s", label) < 0)
device = strjoin("/dev/mapper/", label);
if (!device)
return NULL;
f = setmntent(fstab_path(), "re");