1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-23 06:35:36 +00:00

config_close() didn't work correctly when config was parsed from string

instead of file.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@909 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-12-02 02:01:28 +00:00 committed by cras
parent db1b93ee99
commit f2a8cab907

View File

@ -347,7 +347,7 @@ void config_close(CONFIG_REC *rec)
g_hash_table_destroy(rec->cache);
g_hash_table_destroy(rec->cache_nodes);
g_free_not_null(rec->last_error);
g_free(rec->fname);
g_free_not_null(rec->fname);
g_free(rec);
}