mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Merge pull request #1274 from ailin-nemui/tags-heap
skip parsing empty tags
This commit is contained in:
commit
73e73df1c5
@ -433,6 +433,8 @@ GHashTable *irc_parse_message_tags(const char *tags)
|
|||||||
(GDestroyNotify) i_refstr_release, (GDestroyNotify) g_free);
|
(GDestroyNotify) i_refstr_release, (GDestroyNotify) g_free);
|
||||||
split = g_strsplit(tags, ";", -1);
|
split = g_strsplit(tags, ";", -1);
|
||||||
for (tmp = split; *tmp != NULL; tmp++) {
|
for (tmp = split; *tmp != NULL; tmp++) {
|
||||||
|
if (*tmp[0] == '\0')
|
||||||
|
continue;
|
||||||
kv = g_strsplit(*tmp, "=", 2);
|
kv = g_strsplit(*tmp, "=", 2);
|
||||||
unescape_tag(kv[1]);
|
unescape_tag(kv[1]);
|
||||||
g_hash_table_replace(hash, i_refstr_intern(kv[0]),
|
g_hash_table_replace(hash, i_refstr_intern(kv[0]),
|
||||||
|
Loading…
Reference in New Issue
Block a user