Hello community, here is the log from the commit of package libwnck checked in at Thu May 31 21:01:34 CEST 2007. -------- --- GNOME/libwnck/libwnck.changes 2007-03-23 23:57:21.000000000 +0100 +++ /mounts/work_src_done/STABLE/libwnck/libwnck.changes 2007-05-29 15:12:41.649948000 +0200 @@ -1,0 +2,6 @@ +Tue May 29 15:12:16 CEST 2007 - danw@suse.de + +- Add libwnck-216129-tasklist-crash.patch from upstream to fix a + panel crash. #216129 + +------------------------------------------------------------------- New: ---- libwnck-216129-tasklist-crash.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libwnck.spec ++++++ --- /var/tmp/diff_new_pack.v21410/_old 2007-05-31 21:01:30.000000000 +0200 +++ /var/tmp/diff_new_pack.v21410/_new 2007-05-31 21:01:30.000000000 +0200 @@ -16,7 +16,7 @@ Group: Development/Libraries/GNOME Autoreqprov: on Version: 2.18.0 -Release: 1 +Release: 21 Summary: Window Navigator Construction Kit (Library Package) Source: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -25,6 +25,7 @@ Patch9: libwnck-opacity-2.patch Patch10: libwnck-viewport-2.patch Patch11: libwnck-border_width-fix-2.patch +Patch12: libwnck-216129-tasklist-crash.patch %description The Window Navigator Construction Kit is a library that can be used to @@ -73,6 +74,7 @@ %patch9 %patch10 %patch11 +%patch12 %build autoreconf -f -i @@ -112,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue May 29 2007 - danw@suse.de +- Add libwnck-216129-tasklist-crash.patch from upstream to fix a + panel crash. #216129 * Fri Mar 23 2007 - maw@suse.de - Update to version 2.18.0 - Minor changes: ++++++ libwnck-216129-tasklist-crash.patch ++++++ --- libwnck/tasklist.c 2007/05/19 22:00:42 1254 +++ libwnck/tasklist.c 2007/05/25 09:56:03 1258 @@ -1200,11 +1200,9 @@ val = n_cols * tasklist->priv->max_button_width; if (val >= lowest_range) { /* Overlaps old range */ + g_assert (array->len > 0); lowest_range = n_cols * grouping_limit; - if (array->len > 0) - g_array_index(array, int, array->len-1) = lowest_range; - else - g_array_insert_val (array, 0, lowest_range); + g_array_index(array, int, array->len-1) = lowest_range; } else { @@ -1228,6 +1226,7 @@ { val = 0; g_array_insert_val (array, 0, val); + g_array_insert_val (array, 0, val); } if (tasklist->priv->size_hints) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de