Blame SOURCES/0054-wizard-don-t-work-with-destroyed-widgets.patch

0c9110
From 112707bca6fe720422248f74127cf301d0adb799 Mon Sep 17 00:00:00 2001
0c9110
From: Jakub Filak <jfilak@redhat.com>
0c9110
Date: Thu, 28 Aug 2014 12:22:39 +0200
0c9110
Subject: [LIBREPORT PATCH 54/93] wizard: don't work with destroyed widgets
0c9110
0c9110
Related to rhbz#1069917
0c9110
0c9110
Signed-off-by: Jakub Filak <jfilak@redhat.com>
0c9110
0c9110
Conflicts:
0c9110
	src/gui-wizard-gtk/wizard.c
0c9110
---
0c9110
 src/gui-wizard-gtk/wizard.c | 35 ++++++++++++++++++++++++++++-------
0c9110
 1 file changed, 28 insertions(+), 7 deletions(-)
0c9110
0c9110
diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c
0c9110
index caae1d2..71964a9 100644
0c9110
--- a/src/gui-wizard-gtk/wizard.c
0c9110
+++ b/src/gui-wizard-gtk/wizard.c
0c9110
@@ -57,6 +57,7 @@ static char *g_event_selected;
0c9110
 static unsigned g_black_event_count = 0;
0c9110
 
0c9110
 static pid_t g_event_child_pid = 0;
0c9110
+static guint g_event_source_id = 0;
0c9110
 
0c9110
 static bool g_expert_mode;
0c9110
 
0c9110
@@ -1586,10 +1587,18 @@ static void update_event_log_on_disk(const char *str)
0c9110
     dd_close(dd);
0c9110
 }
0c9110
 
0c9110
+static bool cancel_event_run()
0c9110
+{
0c9110
+    if (g_event_child_pid <= 0)
0c9110
+        return false;
0c9110
+
0c9110
+    kill(- g_event_child_pid, SIGTERM);
0c9110
+    return true;
0c9110
+}
0c9110
+
0c9110
 static void on_btn_cancel_event(GtkButton *button)
0c9110
 {
0c9110
-    if (g_event_child_pid > 0)
0c9110
-        kill(- g_event_child_pid, SIGTERM);
0c9110
+    cancel_event_run();
0c9110
 }
0c9110
 
0c9110
 static bool is_processing_finished()
0c9110
@@ -1987,8 +1996,10 @@ static gboolean consume_cmd_output(GIOChannel *source, GIOCondition condition, g
0c9110
                                                                          : _("Processing finished, please proceed to the next step."));
0c9110
         }
0c9110
 
0c9110
-        /*g_source_remove(evd->event_source_id);*/
0c9110
+        g_source_remove(g_event_source_id);
0c9110
+        g_event_source_id = 0;
0c9110
         close(evd->fd);
0c9110
+        g_io_channel_unref(evd->channel);
0c9110
         free_run_event_state(evd->run_state);
0c9110
         strbuf_free(evd->event_log);
0c9110
         free(evd->event_name);
0c9110
@@ -2085,7 +2096,7 @@ static void start_event_run(const char *event_name)
0c9110
 
0c9110
     ndelay_on(evd->fd);
0c9110
     evd->channel = g_io_channel_unix_new(evd->fd);
0c9110
-    /*evd->event_source_id = */ g_io_add_watch(evd->channel,
0c9110
+    g_event_source_id = g_io_add_watch(evd->channel,
0c9110
             G_IO_IN | G_IO_ERR | G_IO_HUP, /* need HUP to detect EOF w/o any data */
0c9110
             consume_cmd_output,
0c9110
             evd
0c9110
@@ -3368,13 +3379,23 @@ static void init_pages(void)
0c9110
 
0c9110
 static void assistant_quit_cb(void *obj, void *data)
0c9110
 {
0c9110
+    /* Suppress execution of consume_cmd_output() */
0c9110
+    if (g_event_source_id != 0)
0c9110
+    {
0c9110
+        g_source_remove(g_event_source_id);
0c9110
+        g_event_source_id = 0;
0c9110
+    }
0c9110
+
0c9110
+    cancel_event_run();
0c9110
+
0c9110
     if (g_loaded_texts)
0c9110
     {
0c9110
         g_hash_table_destroy(g_loaded_texts);
0c9110
         g_loaded_texts = NULL;
0c9110
     }
0c9110
 
0c9110
-    gtk_widget_destroy(GTK_WIDGET(data));
0c9110
+    gtk_widget_destroy(GTK_WIDGET(g_wnd_assistant));
0c9110
+    g_wnd_assistant = (void *)0xdeadbeaf;
0c9110
 }
0c9110
 
0c9110
 static void on_btn_startcast(GtkWidget *btn, gpointer user_data)
0c9110
@@ -3526,13 +3547,13 @@ void create_assistant(GtkApplication *app, bool expert_mode)
0c9110
 
0c9110
     create_details_treeview();
0c9110
 
0c9110
-    g_signal_connect(g_btn_close, "clicked", G_CALLBACK(assistant_quit_cb), g_wnd_assistant);
0c9110
+    g_signal_connect(g_btn_close, "clicked", G_CALLBACK(assistant_quit_cb), NULL);
0c9110
     g_signal_connect(g_btn_stop, "clicked", G_CALLBACK(on_btn_cancel_event), NULL);
0c9110
     g_signal_connect(g_btn_onfail, "clicked", G_CALLBACK(on_btn_failed_cb), NULL);
0c9110
     g_signal_connect(g_btn_repeat, "clicked", G_CALLBACK(on_btn_repeat_cb), NULL);
0c9110
     g_signal_connect(g_btn_next, "clicked", G_CALLBACK(on_next_btn_cb), NULL);
0c9110
 
0c9110
-    g_signal_connect(g_wnd_assistant, "destroy", G_CALLBACK(assistant_quit_cb), g_wnd_assistant);
0c9110
+    g_signal_connect(g_wnd_assistant, "destroy", G_CALLBACK(assistant_quit_cb), NULL);
0c9110
     g_signal_connect(g_assistant, "switch-page", G_CALLBACK(on_page_prepare), NULL);
0c9110
 
0c9110
     g_signal_connect(g_tb_approve_bt, "toggled", G_CALLBACK(on_bt_approve_toggle), NULL);
0c9110
-- 
0c9110
1.8.3.1
0c9110