diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-09-05 19:54:32 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-09-05 19:54:32 -0400 |
commit | ae2c765ffd63f3c05d08d476df2a87ee6092c011 (patch) | |
tree | 784e247db03932c1d6ba19a2a43511715fd3327e /gtk/gtkprivate.c | |
parent | ab9455ea1bd2a5c6a675a7038e99d4bd621879b6 (diff) | |
download | gtk+-ae2c765ffd63f3c05d08d476df2a87ee6092c011.tar.gz |
Fix portal path handling
This was broken when I recently introduced this helper
function.
Diffstat (limited to 'gtk/gtkprivate.c')
-rw-r--r-- | gtk/gtkprivate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprivate.c b/gtk/gtkprivate.c index 58618508d3..0d3dfd78a0 100644 --- a/gtk/gtkprivate.c +++ b/gtk/gtkprivate.c @@ -308,7 +308,7 @@ get_portal_path (GDBusConnection *connection, if (sender[i] == '.') sender[i] = '_'; - path = g_strconcat (PORTAL_OBJECT_PATH, "/", kind, "/", sender, "/", token, NULL); + path = g_strconcat (PORTAL_OBJECT_PATH, "/", kind, "/", sender, "/", *token, NULL); g_free (sender); |