Fix a stupid mistake in the previous commit.

Sun, 27 Jul 2008 22:46:49 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Sun, 27 Jul 2008 22:46:49 +0000
changeset 23911
f54fe603e84a
parent 23910
f8989c154a60
child 23912
8169bfe82e47

Fix a stupid mistake in the previous commit.

libpurple/protocols/jabber/jabber.c file | annotate | diff | comparison | revisions
--- a/libpurple/protocols/jabber/jabber.c	Sun Jul 27 22:34:32 2008 +0000
+++ b/libpurple/protocols/jabber/jabber.c	Sun Jul 27 22:46:49 2008 +0000
@@ -1362,11 +1362,11 @@
 	if (js->keepalive_timeout != -1)
 		purple_timeout_remove(js->keepalive_timeout);
 
-	g_free(js);
-
 	g_free(js->srv_rec);
 	js->srv_rec = NULL;
 
+	g_free(js);
+
 	gc->proto_data = NULL;
 }
 

mercurial