1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

relay: fix memory leak when receiving commands from client (weechat protocol)

This commit is contained in:
Sébastien Helleu
2014-08-09 17:15:22 +02:00
parent 4c871760d2
commit a6aee98cb1
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -171,6 +171,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
* python: fix read of return value for callbacks returning an integer
in Python 2.x (closes #125)
* python: fix interpreter used after unload of a script
* relay: fix memory leak when receiving commands from client (weechat protocol)
* relay: fix crash when an IRC "MODE" command is received from client without
arguments
* relay: fix number of bytes sent/received on 32-bit systems
@@ -1394,6 +1394,7 @@ relay_weechat_protocol_recv (struct t_relay_client *client, const char *data)
if (id)
free (id);
free (command);
if (argv)
weechat_string_free_split (argv);
if (argv_eol)