mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Merge pull request #191 from dgl/config-error
Die if the wrong type of node is found when traversing config
This commit is contained in:
commit
b2fe861156
@ -109,6 +109,12 @@ CONFIG_NODE *config_node_traverse(CONFIG_REC *rec, const char *section, int crea
|
|||||||
}
|
}
|
||||||
g_strfreev(list);
|
g_strfreev(list);
|
||||||
|
|
||||||
|
if (!is_node_list(node)) {
|
||||||
|
/* Will die. Better to not corrupt the config further in this case. */
|
||||||
|
g_error("Attempt to use non-list node as list. Corrupt config?");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* save to cache */
|
/* save to cache */
|
||||||
str = g_strdup(section);
|
str = g_strdup(section);
|
||||||
g_hash_table_insert(rec->cache, str, node);
|
g_hash_table_insert(rec->cache, str, node);
|
||||||
|
Loading…
Reference in New Issue
Block a user