mirror of
https://github.com/systemd/systemd.git
synced 2024-11-08 02:57:16 +03:00
machinectl: fix minor memory leak
This commit is contained in:
parent
aa0fff7f9c
commit
bb4a228207
@ -1065,11 +1065,11 @@ static int copy_files(int argc, char *argv[], void *userdata) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
t = strdup(host_path);
|
||||
t = strdupa(host_path);
|
||||
host_basename = basename(t);
|
||||
host_dirname = dirname(host_path);
|
||||
|
||||
t = strdup(container_path);
|
||||
t = strdupa(container_path);
|
||||
container_basename = basename(t);
|
||||
container_dirname = dirname(container_path);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user