From f614997482bbf559e021edd9794419e41bc4aaed Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Mon, 12 Mar 2018 15:28:50 +0100 Subject: [PATCH] Remove obsolate call to _dbus_string_free() in unix variant of _dbus_connect_tcp_socket_with_nonce A DBusString that was initialized with a constant doesn't hold any allocated memory, so it doesn't need to be freed. https://bugs.freedesktop.org/show_bug.cgi?id=61922 --- dbus/dbus-sysdeps-unix.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dbus/dbus-sysdeps-unix.c b/dbus/dbus-sysdeps-unix.c index 73c59acb..249cf77e 100644 --- a/dbus/dbus-sysdeps-unix.c +++ b/dbus/dbus-sysdeps-unix.c @@ -1454,7 +1454,6 @@ _dbus_connect_tcp_socket_with_nonce (const char *host, dbus_bool_t ret; _dbus_string_init_const (&noncefileStr, noncefile); ret = _dbus_send_nonce (fd, &noncefileStr, error); - _dbus_string_free (&noncefileStr); if (!ret) { -- 2.12.3