From 04c520bad9001e40e177f729accbbda9e5be5a1b Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Tue, 17 Feb 1998 04:03:56 +0000 Subject: [PATCH] Changed function so elements are always inserted, even if they compare Mon Feb 16 23:05:06 1998 Owen Taylor * glist.c (g_list_insert_sorted): Changed function so elements are always inserted, even if they compare equal with another. --- glib/ChangeLog | 6 ++++++ glib/glist.c | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/glib/ChangeLog b/glib/ChangeLog index e19533fcf3..d41f9c202e 100644 --- a/glib/ChangeLog +++ b/glib/ChangeLog @@ -1,3 +1,9 @@ +Mon Feb 16 23:05:06 1998 Owen Taylor + + * glist.c (g_list_insert_sorted): Changed function + so elements are always inserted, even if they compare + equal with another. + Thu Feb 12 22:48:11 1998 Owen Taylor * gstring.c glib.h: removed deprecated g_string_equal diff --git a/glib/glist.c b/glib/glist.c index a9aebff1f2..3ada548fba 100644 --- a/glib/glist.c +++ b/glib/glist.c @@ -389,9 +389,6 @@ g_list_insert_sorted (GList *list, cmp = (*func) (data, tmp_list->data); } - if (cmp == 0) - return list; - new_list = g_list_alloc(); new_list->data = data;