1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:46:38 +02:00

aspell: fix uninitialized variable "lang" when displaying list of installed dictionaries

This commit is contained in:
Sebastien Helleu
2013-06-29 12:38:59 +02:00
parent 706032e5ac
commit 6103f18cd6
@@ -164,6 +164,7 @@ weechat_aspell_command_speller_list_dicts ()
while ((dict = aspell_dict_info_enumeration_next (elements)) != NULL)
{
lang = NULL;
country = NULL;
pos = strchr (dict->code, '_');