From 6d659f09930f7a8ddb5379acb9532b067b45549d Mon Sep 17 00:00:00 2001 From: Mika Laitio Date: Mon, 24 Jan 2011 00:16:04 +0200 Subject: [PATCH] set_config_value(): fix memory leak Signed-off-by: Mika Laitio --- src/config.c | 96 +++++++++++++++++++++++++++------------------------- 1 file changed, 50 insertions(+), 46 deletions(-) diff --git a/src/config.c b/src/config.c index 0b09944..74bfd8b 100644 --- a/src/config.c +++ b/src/config.c @@ -22,6 +22,7 @@ bool set_config_value(const char *conf_dir_name, char *fname; int b_count; bool save; + struct uci_element *e; bool ret_val; ret_val = false; @@ -39,57 +40,60 @@ bool set_config_value(const char *conf_dir_name, strncat(fname, "/", 1); strncat(fname, conf_file_name, strlen(conf_file_name) + 1); ctx = uci_alloc_context(); - sct = NULL; - uci_set_confdir(ctx, conf_dir_name); - if (access(fname, F_OK) != 0) { - FILE *fp; - - fp = fopen(fname, "w+"); - fclose(fp); - } - err_flg = uci_load(ctx, fname, &pkg); - struct uci_element *e; - uci_foreach_element(&pkg->sections, e) { - tmp_sct = uci_to_section(e); - if (strcmp(tmp_sct->type, section_type) == 0) { - sct = tmp_sct; - break; + if (ctx != NULL) { + sct = NULL; + uci_set_confdir(ctx, conf_dir_name); + if (access(fname, W_OK) != 0) { + if (access(fname, F_OK) != 0) { + FILE *fp; + fp = fopen(fname, "w+"); + fclose(fp); + } } - } - //sct = uci_lookup_section(ctx, pkg, "service"); - if (sct != NULL) { - log_debug("section found\n"); - } - else { - log_debug("adding new section\n"); - err_flg = uci_add_named_section(ctx, pkg, section_type, section_name, &sct); - log_debug("err_flg: %d, section name: %s\n", err_flg, sct->e.name); - } - opt = uci_lookup_option(ctx, sct, key); - if (opt != NULL) { - struct uci_ptr ptr; - memset(&ptr, 0, sizeof(ptr)); - ptr.package = pkg->e.name; - ptr.section = sct->e.name; - ptr.option = key; + err_flg = uci_load(ctx, fname, &pkg); + uci_foreach_element(&pkg->sections, e) { + tmp_sct = uci_to_section(e); + if (strcmp(tmp_sct->type, section_type) == 0) { + sct = tmp_sct; + break; + } + } + //sct = uci_lookup_section(ctx, pkg, "service"); + if (sct != NULL) { + log_debug("section found\n"); + } + else { + log_debug("adding new section\n"); + err_flg = uci_add_named_section(ctx, pkg, section_type, section_name, &sct); + log_debug("err_flg: %d, section name: %s\n", err_flg, sct->e.name); + } + opt = uci_lookup_option(ctx, sct, key); + if (opt != NULL) { + struct uci_ptr ptr; + memset(&ptr, 0, sizeof(ptr)); + ptr.package = pkg->e.name; + ptr.section = sct->e.name; + ptr.option = key; - if (uci_lookup_ptr(ctx, &ptr, NULL, false) == UCI_OK) { - log_debug("trying to change option value\n"); - ptr.value = strdup(value); - uci_set(ctx, &ptr); - save = true; + if (uci_lookup_ptr(ctx, &ptr, NULL, false) == UCI_OK) { + log_debug("trying to change option value\n"); + ptr.value = strdup(value); + uci_set(ctx, &ptr); + save = true; + } } - } - else { - opt = uci_alloc_option(sct, key, value); - save = true; - } - if (save == true) { - log_debug("saving config file: %s\n", fname); - uci_save(ctx, pkg); + else { + opt = uci_alloc_option(sct, key, value); + save = true; + } + if (save == true) { + log_debug("saving config file: %s\n", fname); + uci_save(ctx, pkg); + } + uci_free_context(ctx); + ret_val = true; } free(fname); - ret_val = true; } else { log_error("Could not change config value, out of memory"); -- 2.41.0