Hello community, here is the log from the commit of package brasero for openSUSE:Factory checked in at 2014-10-11 22:41:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/brasero (Old) and /work/SRC/openSUSE:Factory/.brasero.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "brasero" Changes: -------- --- /work/SRC/openSUSE:Factory/brasero/brasero.changes 2014-09-30 19:37:03.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.brasero.new/brasero.changes 2014-10-11 22:41:52.000000000 +0200 @@ -1,0 +2,7 @@ +Fri Oct 10 06:42:26 UTC 2014 - [email protected] + +- Add brasero-fix-segfault-when-displaying-the-plugin-dialog.patch + to fix crash when clicking on Edit -> Plugins, patch taken from + upstream bug report; fixes bnc#900549, bgo#728376. + +------------------------------------------------------------------- New: ---- brasero-fix-segfault-when-displaying-the-plugin-dialog.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ brasero.spec ++++++ --- /var/tmp/diff_new_pack.r3KOJK/_old 2014-10-11 22:41:54.000000000 +0200 +++ /var/tmp/diff_new_pack.r3KOJK/_new 2014-10-11 22:41:54.000000000 +0200 @@ -24,6 +24,8 @@ Group: Productivity/Multimedia/CD/Record Url: http://gnome.org/projects/brasero Source: http://download.gnome.org/sources/brasero/3.11/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM brasero-fix-segfault-when-displaying-the-plugin-dialog.patch bnc#900549 bgo#728376 [email protected] -- Fix crash when clicking on Edit -> Plugins, patch from upstream bug report +Patch0: brasero-fix-segfault-when-displaying-the-plugin-dialog.patch BuildRequires: fdupes BuildRequires: gobject-introspection-devel BuildRequires: gtk-doc @@ -184,6 +186,7 @@ %lang_package %prep %setup -q +%patch0 -p1 translation-update-upstream %build ++++++ brasero-fix-segfault-when-displaying-the-plugin-dialog.patch ++++++ From 492d99443a76e02ff16d128779fefc8083eb82ab Mon Sep 17 00:00:00 2001 From: Laurent Bigonville <[email protected]> Date: Sat, 4 Oct 2014 15:31:19 +0200 Subject: [PATCH] Fix segfault when displaying the plugin dialog This partially revert changes from 426841b445f8f62191f2b0569088e0da15c42068 https://bugzilla.gnome.org/show_bug.cgi?id=728376 --- src/brasero-plugin-manager-ui.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/brasero-plugin-manager-ui.c b/src/brasero-plugin-manager-ui.c index bca5fd4..9fde757 100644 --- a/src/brasero-plugin-manager-ui.c +++ b/src/brasero-plugin-manager-ui.c @@ -241,16 +241,12 @@ plugin_manager_ui_view_icon_cell_cb (GtkTreeViewColumn *tree_column, GtkTreeIter *iter, gpointer data) { - BraseroPlugin *plugin; g_return_if_fail (tree_model != NULL); g_return_if_fail (tree_column != NULL); - gtk_tree_model_get (tree_model, iter, PLUGIN_COLUMN, &plugin, -1); - g_object_set (G_OBJECT (cell), "visible", FALSE, - "sensitive", brasero_plugin_get_gtype (plugin) != G_TYPE_NONE && !brasero_plugin_get_compulsory (plugin), NULL); return; /* @@ -271,7 +267,7 @@ plugin_manager_ui_view_icon_cell_cb (GtkTreeViewColumn *tree_column, "icon-name", brasero_plugin_get_icon_name (plugin), "sensitive", - brasero_plugin_get_gtype (plugin) != G_TYPE_NONE, + brasero_plugin_get_gtype (plugin) != G_TYPE_NONE && !brasero_plugin_get_compulsory (plugin), NULL); */ } -- 2.1.1-- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
