From fa7f42cdd65fa4a5201597fe2137b7fc14e74714 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sun, 8 Dec 2013 08:57:30 +0100 Subject: [PATCH] core: remove option on /unset of plugin description option (plugins.desc.xxx) (bug #40768) --- ChangeLog | 2 ++ src/plugins/plugin-config.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 059b80b15..b09811b3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,8 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes] == Version 0.4.3 (under dev) +* core: remove option on /unset of plugin description option (plugins.desc.xxx) + (bug #40768) * core: add buffer property "day_change" to hide messages for the day change in specific buffers * core: replace default key key[ctrl-c,r] by key[ctrl-c,v] for reverse video in diff --git a/src/plugins/plugin-config.c b/src/plugins/plugin-config.c index b83dce33e..ca6e42bea 100644 --- a/src/plugins/plugin-config.c +++ b/src/plugins/plugin-config.c @@ -319,6 +319,8 @@ plugin_config_delete_desc (void *data, struct t_config_file *config_file, } } + config_file_option_free (option); + return WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED; }