im.pidgin.pidgin: 414552fed3674783c809744aba6f913b4a8ee212

nosnilmot at pidgin.im nosnilmot at pidgin.im
Sun Feb 3 23:45:49 EST 2008


-----------------------------------------------------------------
Revision: 414552fed3674783c809744aba6f913b4a8ee212
Ancestor: 1c0e001dd7982814ff7749e6cb13321d9a096a25
Author: nosnilmot at pidgin.im
Date: 2008-02-04T04:39:54
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/414552fed3674783c809744aba6f913b4a8ee212

Modified files:
        libpurple/protocols/myspace/myspace.c

ChangeLog: 

purple_status_type_new_with_attrs() must be NULL terminated. Finally all
the pain of being able to use G_GNUC_NULL_TERMINATED in a backwards
compatible way pays off with a bugfix :)

-------------- next part --------------
============================================================
--- libpurple/protocols/myspace/myspace.c	b335f1ad3cc7df10679b98f0e76726378cb27f4e
+++ libpurple/protocols/myspace/myspace.c	7a95c74e5afe98cd0fb3e891079ea784f4b8f3f2
@@ -168,7 +168,8 @@ msim_status_types(PurpleAccount *acct)
 			TRUE,                   /* independent */
 
 			PURPLE_TUNE_ARTIST, _("Artist"), purple_value_new(PURPLE_TYPE_STRING),
-			PURPLE_TUNE_TITLE, _("Title"), purple_value_new(PURPLE_TYPE_STRING));
+			PURPLE_TUNE_TITLE, _("Title"), purple_value_new(PURPLE_TYPE_STRING),
+			NULL);
 
 	types = g_list_append(types, status);
 


More information about the Commits mailing list