Commit f50688b4 authored by Kees Cook's avatar Kees Cook Committed by Shuah Khan
Browse files

selftests/tls: Add {} to avoid static checker warning



This silences a static checker warning due to the unusual macro
construction of EXPECT_*() by adding explicit {}s around the enclosing
while loop.

Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Fixes: 7f657d5b ("selftests: tls: add selftests for TLS sockets")
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 1421ec68
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -418,8 +418,9 @@ TEST_F(tls, sendmsg_large)
		EXPECT_EQ(sendmsg(self->cfd, &msg, 0), send_len);
	}

	while (recvs++ < sends)
	while (recvs++ < sends) {
		EXPECT_NE(recv(self->fd, mem, send_len, 0), -1);
	}

	free(mem);
}