ee3db5a602
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/libreport#aa4f8872d751f1dae5e6b73da5ecb6441b00b28f
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
From 1c646a2948d287368ec1a82b444e8175ebfbf5b9 Mon Sep 17 00:00:00 2001
|
|
From: Ernestas Kulik <ekulik@redhat.com>
|
|
Date: Tue, 25 Aug 2020 15:05:31 +0300
|
|
Subject: [PATCH] gui-wizard-gtk: wizard: Remove variable
|
|
|
|
cmd_output is no longer used since
|
|
440bcfa8526d50f122ec14e19f2bf2aa336f61e7 and trying to call
|
|
g_string_free() on it results in a critical warning.
|
|
---
|
|
src/gui-wizard-gtk/wizard.c | 6 ------
|
|
1 file changed, 6 deletions(-)
|
|
|
|
diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c
|
|
index 44900448..a4d7caa0 100644
|
|
--- a/src/gui-wizard-gtk/wizard.c
|
|
+++ b/src/gui-wizard-gtk/wizard.c
|
|
@@ -231,8 +231,6 @@ typedef struct
|
|
|
|
static page_obj_t pages[NUM_PAGES];
|
|
|
|
-static GString *cmd_output = NULL;
|
|
-
|
|
/* Utility functions */
|
|
|
|
static void clear_warnings(void);
|
|
@@ -1667,10 +1665,6 @@ static gboolean consume_cmd_output(GIOChannel *source, GIOCondition condition, g
|
|
log_notice("done running event on '%s': %d", g_dump_dir_name, retval);
|
|
append_to_textview(g_tv_event_log, "\n");
|
|
|
|
- /* Free child output buffer */
|
|
- g_string_free(cmd_output, TRUE);
|
|
- cmd_output = NULL;
|
|
-
|
|
/* Hide spinner and stop btn */
|
|
gtk_widget_hide(GTK_WIDGET(g_spinner_event_log));
|
|
gtk_widget_hide(g_btn_stop);
|
|
--
|
|
2.28.0
|
|
|