Fix: return EINVAL if agent registration fails
authorDavid Goulet <dgoulet@efficios.com>
Tue, 7 Oct 2014 19:05:48 +0000 (15:05 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Tue, 21 Oct 2014 18:48:18 +0000 (14:48 -0400)
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 <dgoulet@efficios.com>
src/bin/lttng-sessiond/agent-thread.c

index 0e827a4456d4c0ea9c37b54818bbcb6ba4c5e7a7..1caf748432a4ec1918cab71a87b4788e02da1e47 100644 (file)
@@ -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);
This page took 0.02634 seconds and 5 git commands to generate.