1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Fix minor leak.

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4847 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-05-23 11:19:43 +00:00 committed by exg
parent 82d6797306
commit 58d050db7c

View File

@ -1339,6 +1339,8 @@ static THEME_REC *read_internal_theme(void)
THEME_REC *theme;
theme = theme_create("internal", "_internal");
theme->refcount++;
theme_destroy(theme);
config = config_open(NULL, -1);
config_parse_data(config, default_theme, "internal");
@ -1359,7 +1361,6 @@ void themes_init(void)
init_finished = FALSE;
init_errors = NULL;
themes = NULL;
themes_reload();
command_bind("format", NULL, (SIGNAL_FUNC) cmd_format);