Fix 2nd segfault

This commit is contained in:
Mario Hüttel 2018-05-24 00:23:39 +02:00
parent 2c3c7a9a80
commit 1ffe677804
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -189,7 +189,6 @@ static void on_convert_clicked(gpointer button, gpointer user)
dialog = gtk_file_chooser_dialog_new("Save TeX File", GTK_WINDOW(data->main_window), GTK_FILE_CHOOSER_ACTION_SAVE,
"Cancel", GTK_RESPONSE_CANCEL, "Save", GTK_RESPONSE_ACCEPT, NULL);
res = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
if (res == GTK_RESPONSE_ACCEPT) {
file_name = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
tex_file = fopen(file_name, "w");
@ -199,6 +198,7 @@ static void on_convert_clicked(gpointer button, gpointer user)
fclose(tex_file);
}
gtk_widget_destroy(dialog);
g_list_free_full(layer_list, (GDestroyNotify)delete_layer_info_struct);
}