From fcbb6b7fe36688d1af398766a333535e55939edb Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 18 May 2016 13:08:44 -0400 Subject: wayland: Survive lack of settings This can be made to happen eg by setting XDG_DATA_DIRS and XDG_DATA_HOME to /. Not a useful value, but not a good reason to crash either. --- gdk/wayland/gdkscreen-wayland.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gdk/wayland/gdkscreen-wayland.c b/gdk/wayland/gdkscreen-wayland.c index a0583e40fa..865aa1c9b9 100644 --- a/gdk/wayland/gdkscreen-wayland.c +++ b/gdk/wayland/gdkscreen-wayland.c @@ -620,6 +620,8 @@ init_settings (GdkScreen *screen) screen_wayland->settings = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, g_object_unref); source = g_settings_schema_source_get_default (); + if (source == NULL) + return; for (i = 0; i < G_N_ELEMENTS (translations); i++) { -- cgit v1.2.1