diff libpurple/protocols/silc/buddy.c @ 23056:d74ff4f23171

applied changes from 7f7111ed9e5924db9e740ad354fce8fb82445b1e through 7d9bc7a7d232a2b83e7923d0d5d20be09ed1fc5c
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 26 Jun 2008 01:18:05 +0000
parents 67a4c8c46f78
children 16734635febf 071414f413a4 cc1e35fa774d
line wrap: on
line diff
--- a/libpurple/protocols/silc/buddy.c	Thu Jun 26 01:17:25 2008 +0000
+++ b/libpurple/protocols/silc/buddy.c	Thu Jun 26 01:18:05 2008 +0000
@@ -1434,13 +1434,25 @@
 void silcpurple_idle_set(PurpleConnection *gc, int idle)
 
 {
-	SilcPurple sg = gc->proto_data;
-	SilcClient client = sg->client;
-	SilcClientConnection conn = sg->conn;
+	SilcPurple sg;
+	SilcClient client;
+	SilcClientConnection conn;
 	SilcAttributeObjService service;
 	const char *server;
 	int port;
 
+	sg = gc->proto_data;
+	if (sg == NULL)
+		return;
+
+	client = sg->client;
+	if (client == NULL)
+		return;
+
+	conn = sg->conn;
+	if (conn == NULL)
+		return;
+
 	server = purple_account_get_string(sg->account, "server",
 					 "silc.silcnet.org");
 	port = purple_account_get_int(sg->account, "port", 706),