From: David Goulet Date: Tue, 7 Oct 2014 19:05:48 +0000 (-0400) Subject: Fix: return EINVAL if agent registration fails X-Git-Tag: v2.5.3~41 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=0ac9b15db22d9817dd77f4c34673508e993f60ca;p=lttng-tools.git 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 --- diff --git a/src/bin/lttng-sessiond/jul-thread.c b/src/bin/lttng-sessiond/jul-thread.c index 9859a1071..1630fc553 100644 --- a/src/bin/lttng-sessiond/jul-thread.c +++ b/src/bin/lttng-sessiond/jul-thread.c @@ -208,7 +208,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; } pid = be32toh(msg.pid);