From 79865500b89925b61767294821e0706a57d493d5 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Tue, 7 Oct 2014 15:05:48 -0400 Subject: [PATCH] Fix: return EINVAL if agent registration fails The errno value might be 0 thus not returning an error if so. It has been seen with an unstable python agent code base which means it could happen in the future if a third part decides to create an agent. Signed-off-by: David Goulet --- src/bin/lttng-sessiond/agent-thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lttng-sessiond/agent-thread.c b/src/bin/lttng-sessiond/agent-thread.c index 0e827a445..1caf74843 100644 --- a/src/bin/lttng-sessiond/agent-thread.c +++ b/src/bin/lttng-sessiond/agent-thread.c @@ -215,7 +215,7 @@ static int handle_registration(struct lttcomm_sock *reg_sock, size = new_sock->ops->recvmsg(new_sock, &msg, sizeof(msg), 0); if (size < sizeof(msg)) { - ret = -errno; + ret = -EINVAL; goto error_socket; } domain = be32toh(msg.domain); -- 2.34.1