[asterisk-commits] phsultan: trunk r105327 - in /trunk: ./ res/res_jabber.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Feb 29 08:50:41 CST 2008
Author: phsultan
Date: Fri Feb 29 08:50:40 2008
New Revision: 105327
URL: http://svn.digium.com/view/asterisk?view=rev&rev=105327
Log:
Merged revisions 105326 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r105326 | phsultan | 2008-02-29 15:47:10 +0100 (Fri, 29 Feb 2008) | 1 line
Fix a potential memory leak
........
Modified:
trunk/ (props changed)
trunk/res/res_jabber.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/res/res_jabber.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_jabber.c?view=diff&rev=105327&r1=105326&r2=105327
==============================================================================
--- trunk/res/res_jabber.c (original)
+++ trunk/res/res_jabber.c Fri Feb 29 08:50:40 2008
@@ -1767,6 +1767,7 @@
int res = 0;
iks *iq = NULL;
iq = iks_new("iq");
+
if (iq && client) {
iks_insert_attrib(iq, "type", "get");
iks_insert_attrib(iq, "to", server);
@@ -1775,6 +1776,9 @@
ast_aji_send(client, iq);
} else
ast_log(LOG_ERROR, "Out of memory.\n");
+
+ iks_delete(iq);
+
return res;
}
More information about the asterisk-commits
mailing list