pidgin: 19b202a7: used the wrong count variable here

khc at pidgin.im khc at pidgin.im
Sun May 10 19:15:33 EDT 2009


-----------------------------------------------------------------
Revision: 19b202a7eff53542a31f52433aa8bc17649f8b3d
Ancestor: a543de79fc730fb1a32056d0da5abe0044ed9533
Author: khc at pidgin.im
Date: 2009-05-10T23:13:31
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/19b202a7eff53542a31f52433aa8bc17649f8b3d

Modified files:
        libpurple/protocols/jabber/google.c

ChangeLog: 

used the wrong count variable here


-------------- next part --------------
============================================================
--- libpurple/protocols/jabber/google.c	33c98d682ed67b47f4ecd64f3525b6b35b7963e3
+++ libpurple/protocols/jabber/google.c	b57bdbd4fde25c775da919e1f61c4ed873d3b384
@@ -735,7 +735,7 @@ jabber_gmail_parse(JabberStream *js, con
 	g_free(to_name);
 	g_free(tos);
 	g_free(froms);
-	for (i = 0; i < count; i++)
+	for (i = 0; i < returned_count; i++)
 		g_free(subjects[i]);
 	g_free(subjects);
 	g_free(urls);


More information about the Commits mailing list