[LTP] [PATCH] lib: fix length check in safe_sendmsg
Alexey Kodanev
alexey.kodanev@oracle.com
Wed Mar 14 12:25:50 CET 2018
On 03/14/2018 01:40 PM, Richard Palethorpe wrote:
> It appears that we only check the len parameter against the return value if
> the len parameter is zero.
>
> Signed-off-by: Richard Palethorpe <rpalethorpe@suse.com>
> ---
> lib/safe_net.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/safe_net.c b/lib/safe_net.c
> index 9ea9d2b42..96216ee69 100644
> --- a/lib/safe_net.c
> +++ b/lib/safe_net.c
> @@ -200,7 +200,7 @@ ssize_t safe_sendmsg(const char *file, const int lineno, size_t len,
> file, lineno, sockfd, msg, flags);
> }
>
> - if (!len && (size_t)rval != len) {
> + if (len && (size_t)rval != len) {
> tst_brkm(TBROK, NULL,
> "%s:%d: sendmsg(%d, %p, %d) ret(%zd) != len(%zu)",
> file, lineno, sockfd, msg, flags, rval, len);
>
Applied. Nice catch, thank you Richard!
More information about the ltp
mailing list