pidgin: 111b4d90: Fix possible garbage value.

qulogic at pidgin.im qulogic at pidgin.im
Mon Aug 23 01:31:50 EDT 2010


----------------------------------------------------------------------
Revision: 111b4d901f1d99845e5be87c4c922d108ea10798
Parent:   47179f04bde4a1cd3857fd05eb4e40f25ee9e26f
Author:   qulogic at pidgin.im
Date:     08/21/10 17:55:05
Branch:   im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/111b4d901f1d99845e5be87c4c922d108ea10798

Changelog: 

Fix possible garbage value.

Changes against parent 47179f04bde4a1cd3857fd05eb4e40f25ee9e26f

  patched  libpurple/protocols/msn/notification.c

-------------- next part --------------
============================================================
--- libpurple/protocols/msn/notification.c	b9288160a2e508af36da3203d01e8587a54ea918
+++ libpurple/protocols/msn/notification.c	63571bb4f0db726216a123a8058443eae94bf093
@@ -1898,7 +1898,7 @@ system_msg(MsnCmdProc *cmdproc, MsnMessa
 	if ((type_s = g_hash_table_lookup(table, "Type")) != NULL)
 	{
 		int type = atoi(type_s);
-		char buf[MSN_BUF_LEN];
+		char buf[MSN_BUF_LEN] = "";
 		int minutes;
 
 		switch (type)


More information about the Commits mailing list