Message ID | 20201028114410.108759-1-colin.king@canonical.com |
---|---|
State | New |
Headers | show |
Series | [next] net/sunrpc: fix unsigned size_t comparison to less than zero | expand |
diff --git a/net/sunrpc/sysctl.c b/net/sunrpc/sysctl.c index a18b36b5422d..bb62badef6bc 100644 --- a/net/sunrpc/sysctl.c +++ b/net/sunrpc/sysctl.c @@ -72,7 +72,7 @@ static int proc_do_xprt(struct ctl_table *table, int write, len = svc_print_xprts(tmpbuf, sizeof(tmpbuf)); *lenp = memory_read_from_buffer(buffer, *lenp, ppos, tmpbuf, len); - if (*lenp < 0) { + if ((ssize_t)*lenp < 0) { *lenp = 0; return -EINVAL; }