From ac89076d412f67aa7122a9fb786af32eb5f87d5d Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Tue, 22 Sep 2020 11:45:56 +0100 Subject: [PATCH vd_agent_linux 07/17] vdagent-connection: Pass "err" to g_credentials_get_unix_pid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allows to return detailed information if g_credentials_get_unix_pid fails. Signed-off-by: Frediano Ziglio Acked-by: Julien Ropé --- src/vdagent-connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vdagent-connection.c b/src/vdagent-connection.c index 8c023e2..b1d4db6 100644 --- a/src/vdagent-connection.c +++ b/src/vdagent-connection.c @@ -155,7 +155,7 @@ gint vdagent_connection_get_peer_pid(VDAgentConnection *self, sock = g_socket_connection_get_socket(G_SOCKET_CONNECTION(priv->io_stream)); cred = g_socket_get_credentials(sock, err); if (cred) { - pid = g_credentials_get_unix_pid(cred, NULL); + pid = g_credentials_get_unix_pid(cred, err); g_object_unref(cred); } -- 2.26.2