1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-21 02:50:18 +03:00

repart: Fix memory leak

This commit is contained in:
Daan De Meyer 2024-08-28 14:29:50 +02:00
parent 32b2f4c01e
commit 9f482c5a05

View File

@ -470,6 +470,7 @@ static Partition* partition_free(Partition *p) {
strv_free(p->exclude_files_target);
strv_free(p->make_directories);
strv_free(p->subvolumes);
free(p->default_subvolume);
free(p->verity_match_key);
iovec_done(&p->roothash);
@ -505,6 +506,7 @@ static void partition_foreignize(Partition *p) {
p->exclude_files_target = strv_free(p->exclude_files_target);
p->make_directories = strv_free(p->make_directories);
p->subvolumes = strv_free(p->subvolumes);
p->default_subvolume = mfree(p->default_subvolume);
p->verity_match_key = mfree(p->verity_match_key);
p->priority = 0;