irc: fix memory leak when receiving a message with tags
This commit is contained in:
parent
a38533cb41
commit
9dd8cc0d6a
@ -26,6 +26,10 @@ Improvements::
|
||||
|
||||
* core: allow merge of buffers by name in command /buffer (issue #1159)
|
||||
|
||||
Bug fixes::
|
||||
|
||||
* irc: fix memory leak when receiving a message with tags
|
||||
|
||||
Documentation::
|
||||
|
||||
* core: split man pages weechat and weechat-headless
|
||||
|
@ -3027,6 +3027,8 @@ irc_server_msgq_flush ()
|
||||
|
||||
if (new_msg2)
|
||||
free (new_msg2);
|
||||
if (tags)
|
||||
free (tags);
|
||||
if (nick)
|
||||
free (nick);
|
||||
if (host)
|
||||
|
Loading…
x
Reference in New Issue
Block a user