1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-27 18:55:40 +03:00

boot: Fix memory leak

This commit is contained in:
Jan Janssen 2023-06-08 19:04:22 +02:00 committed by Luca Boccassi
parent 4021e9e3e9
commit 7da9db535c

View File

@ -2421,7 +2421,9 @@ static void config_free(Config *config) {
config_entry_free(config->entries[i]);
free(config->entries);
free(config->entry_default_config);
free(config->entry_default_efivar);
free(config->entry_oneshot);
free(config->entry_saved);
}
static void config_write_entries_to_variable(Config *config) {