diff options
-rw-r--r-- | src/core/wee-config-file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-config-file.c b/src/core/wee-config-file.c index c3619d839..27c90bdd6 100644 --- a/src/core/wee-config-file.c +++ b/src/core/wee-config-file.c @@ -2232,7 +2232,7 @@ config_file_option_unset (struct t_config_option *option) } else { - config_file_option_free (option, 0); + config_file_option_free (option, 1); rc = WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED; } @@ -3956,7 +3956,7 @@ config_file_section_free_options (struct t_config_section *section) while (section->options) { - config_file_option_free (section->options, 0); + config_file_option_free (section->options, 1); } } |