im.pidgin.pidgin: 4f48bb94d8ded9647ff5ac298194fc3c29f7c317

konradgraefe at aol.com konradgraefe at aol.com
Fri Jan 4 17:55:40 EST 2008


-----------------------------------------------------------------
Revision: 4f48bb94d8ded9647ff5ac298194fc3c29f7c317
Ancestor: e3556a004c8ffd6f5fc783c91a419405f1f3600b
Author: konradgraefe at aol.com
Author: sadrul at pidgin.im
Date: 2008-01-04T22:57:51
Branch: im.pidgin.pidgin

Modified files:
        COPYRIGHT pidgin/gtkblist.c

ChangeLog: 

Fix an infinite loop. Fixes #4486.

-------------- next part --------------
============================================================
--- COPYRIGHT	2311d8e470bd1d423bf8dade36e2c183871cc41d
+++ COPYRIGHT	6a618939eeda6309bd786774e50eb095a19ff992
@@ -151,6 +151,7 @@ Ryan C. Gordon
 Michael Golden
 Charlie Gordon
 Ryan C. Gordon
+Konrad Gräfe
 Miah Gregory
 David Grohmann
 Christian Hammond
============================================================
--- pidgin/gtkblist.c	d924560dc514fa2eca2fcc6d62f11aba93739678
+++ pidgin/gtkblist.c	4bf6ac7582f1735e98e9b597912e38335da07284
@@ -7008,7 +7008,8 @@ void pidgin_blist_sort_method_reg(const 
 	pidgin_blist_update_sort_methods();
 }
 
-void pidgin_blist_sort_method_unreg(const char *id){
+void pidgin_blist_sort_method_unreg(const char *id)
+{
 	GList *l = pidgin_blist_sort_methods;
 
 	while(l) {
@@ -7020,6 +7021,7 @@ void pidgin_blist_sort_method_unreg(cons
 			g_free(method);
 			break;
 		}
+		l = l->next;
 	}
 	pidgin_blist_update_sort_methods();
 }


More information about the Commits mailing list