[at-spi2-core: 4/5] spi_atk_create_socket(): escape just the socket path, not the full unix: address
- From: Federico Mena Quintero <federico src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [at-spi2-core: 4/5] spi_atk_create_socket(): escape just the socket path, not the full unix: address
- Date: Fri, 10 Jun 2022 02:57:10 +0000 (UTC)
commit ab4b22ccd6303fa52a7afc672ad88eda7a05d233
Author: Federico Mena Quintero <federico gnome org>
Date: Thu Jun 9 21:05:10 2022 -0500
spi_atk_create_socket(): escape just the socket path, not the full unix: address
My bad, sorry :(
atk-adaptor/bridge.c | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
---
diff --git a/atk-adaptor/bridge.c b/atk-adaptor/bridge.c
index c114c9dc..d0cd773a 100644
--- a/atk-adaptor/bridge.c
+++ b/atk-adaptor/bridge.c
@@ -931,6 +931,8 @@ spi_atk_create_socket (SpiBridge *app)
DBusServer *server;
DBusError error;
const gchar *user_runtime_dir = g_get_user_runtime_dir ();
+ char *socket_path;
+ char *escaped_socket_path;
if (g_mkdir_with_parents (user_runtime_dir, 0700) != 0)
return -1;
@@ -948,13 +950,20 @@ spi_atk_create_socket (SpiBridge *app)
}
if (app->app_tmp_dir)
- app->app_bus_addr = g_strdup_printf ("unix:path=%s/socket", app->app_tmp_dir);
+ {
+ socket_path = g_strdup_printf ("%s/socket", app->app_tmp_dir);
+ }
else
- app->app_bus_addr = g_strdup_printf ("unix:path=%s/at-spi2-socket-%d",
- user_runtime_dir, getpid ());
+ {
+ socket_path = g_strdup_printf ("%s/at-spi2-socket-%d",
+ user_runtime_dir, getpid ());
+ }
- if (!app->app_bus_addr)
- return -1;
+ escaped_socket_path = dbus_address_escape_value (socket_path);
+ g_free (socket_path);
+
+ app->app_bus_addr = g_strconcat ("unix:path=", escaped_socket_path, NULL);
+ dbus_free (escaped_socket_path);
dbus_error_init(&error);
server = dbus_server_listen(app->app_bus_addr, &error);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]