X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Funix.c;h=edca02abf4fa246ad3d33b399ddbd0be252060b8;hp=a87ce05ed581cc6cb1d14788956a6ca0d64cdb38;hb=5e5c14cef3eee00b7b3b218beed85d1a4ee2d71d;hpb=aa678e506230fdc6f9f3a6db6e8188ae3bb64e40 diff --git a/src/common/unix.c b/src/common/unix.c index a87ce05ed..edca02abf 100644 --- a/src/common/unix.c +++ b/src/common/unix.c @@ -490,11 +490,6 @@ ssize_t lttcomm_recv_fds_unix_sock(int sock, int *fds, size_t nb_fd) * message. */ for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL; cmsg = CMSG_NXTHDR(&msg, cmsg)) { - if (!cmsg) { - fprintf(stderr, "Error: Invalid control message header\n"); - ret = -1; - goto end; - } if (cmsg->cmsg_level != SOL_SOCKET) { fprintf(stderr, "Error: The socket needs to be of type SOL_SOCKET\n"); ret = -1;