summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2010-12-28 20:11:35 +0100
committerGravatar waker <wakeroid@gmail.com>2010-12-28 20:11:35 +0100
commitd59c518aa9923a6e786eecf67ee3edd4940f5baa (patch)
tree00870ebb5c8136292328e135bd91af5ece248936
parent807e7e083170918a7a8e7bfc28edf3baa0456e8b (diff)
fixed crash in converter gui
-rw-r--r--plugins/gtkui/convgui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtkui/convgui.c b/plugins/gtkui/convgui.c
index 33cbd08d..fc69911f 100644
--- a/plugins/gtkui/convgui.c
+++ b/plugins/gtkui/convgui.c
@@ -232,9 +232,9 @@ converter_show (void) {
combo = GTK_COMBO_BOX (lookup_widget (conv->converter, "output_format"));
gtk_combo_box_set_active (combo, deadbeef->conf_get_int ("converter.output_format", 0));
- current_ctx = NULL;
int response = gtk_dialog_run (GTK_DIALOG (conv->converter));
+ current_ctx = NULL;
if (response == GTK_RESPONSE_OK) {
converter_process (conv);
gtk_widget_destroy (conv->converter);