Mercurial > pidgin.yaz
diff libpurple/protocols/irc/parse.c @ 32278:d2eb28c12d44
Fix a crash when remote users have certain characters in their
nicknames. (Discovered by Djego Ibanez)
Fixes #14341
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Thu, 18 Aug 2011 08:41:24 +0000 |
| parents | 958621e23f5d |
| children | a5b556ac1de5 062f5781aa57 |
line wrap: on
line diff
--- a/libpurple/protocols/irc/parse.c Thu Aug 18 08:38:23 2011 +0000 +++ b/libpurple/protocols/irc/parse.c Thu Aug 18 08:41:24 2011 +0000 @@ -74,7 +74,7 @@ { "331", "nc:", irc_msg_topic }, /* No channel topic */ { "332", "nc:", irc_msg_topic }, /* Channel topic */ { "333", "*", irc_msg_ignore }, /* Topic setter stuff */ - { "352", "nvcvnvvv:", irc_msg_who },/* Channel WHO */ + { "352", "ncvvvnv:", irc_msg_who }, /* Channel WHO */ { "353", "nvc:", irc_msg_names }, /* Names list */ { "366", "nc:", irc_msg_names }, /* End of names */ { "367", "ncnnv", irc_msg_ban }, /* Ban list */
