Skip to content
Snippets Groups Projects
Commit 68290793 authored by Oyvind Ingvaldsen's avatar Oyvind Ingvaldsen Committed by Nick Schermer
Browse files

Fix segfault when going back to removed directory (bug #9831).

parent 1072df4b
No related branches found
No related tags found
No related merge requests found
......@@ -347,9 +347,10 @@ thunar_history_error_not_found (GFile *goto_file,
gpointer parent)
{
gchar *parse_name;
GError *error;
GError *error = NULL;
g_set_error_literal (&error, G_FILE_ERROR, G_FILE_ERROR_EXIST, _("The item will be removed from the history"));
g_set_error_literal (&error, G_FILE_ERROR, G_FILE_ERROR_EXIST,
_("The item will be removed from the history"));
parse_name = g_file_get_parse_name (goto_file);
thunar_dialogs_show_error (parent, error, _("Could not find \"%s\""), parse_name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment