Blame SOURCES/0001-x11-window-props-Do-not-convert-WM_NAME.patch

066919
From ad1a395707f7c37b26ce446f0fd73ac7fbb9d0fd Mon Sep 17 00:00:00 2001
066919
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
066919
Date: Tue, 9 Oct 2018 00:40:33 +0200
066919
Subject: [PATCH 1/2] x11/window-props: Do not convert WM_NAME
066919
066919
The WM_NAME property is of type TEXT_PROPERTY, which is supposed to be
066919
returned as UTF-8. Commit 840378ae68 broke that assumption, resulting
066919
in crashes with non-UTF8 locales; however the "fix" of converting from
066919
LATIN1 to UTF8 is wrong as well, as the conversion will spit out garbage
066919
when the input encoding isn't actually LATIN1.
066919
066919
Now that the original issue in text_property_to_utf8() has been fixed,
066919
we can simply revert the relevant bits of commit d62491f46eba748e.
066919
066919
https://gitlab.gnome.org/GNOME/mutter/merge_requests/227
066919
---
066919
 src/x11/window-props.c | 5 +----
066919
 1 file changed, 1 insertion(+), 4 deletions(-)
066919
066919
diff --git a/src/x11/window-props.c b/src/x11/window-props.c
066919
index 2f4dfeb31..7c6b25fdb 100644
066919
--- a/src/x11/window-props.c
066919
+++ b/src/x11/window-props.c
066919
@@ -645,10 +645,7 @@ reload_wm_name (MetaWindow    *window,
066919
 
066919
   if (value->type != META_PROP_VALUE_INVALID)
066919
     {
066919
-      g_autofree gchar *title = g_convert (value->v.str, -1,
066919
-                                           "UTF-8", "LATIN1",
066919
-                                           NULL, NULL, NULL);
066919
-      set_window_title (window, title);
066919
+      set_window_title (window, value->v.str);
066919
 
066919
       meta_verbose ("Using WM_NAME for new title of %s: \"%s\"\n",
066919
                     window->desc, window->title);
066919
-- 
066919
2.21.0
066919