From: Sasha Levin Date: Fri, 1 Aug 2014 03:00:35 +0000 (-0400) Subject: iovec: make sure the caller actually wants anything in memcpy_fromiovecend X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=06ebb06d49486676272a3c030bfeef4bd969a8e6;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git iovec: make sure the caller actually wants anything in memcpy_fromiovecend Check for cases when the caller requests 0 bytes instead of running off and dereferencing potentially invalid iovecs. Signed-off-by: Sasha Levin Signed-off-by: David S. Miller --- diff --git a/lib/iovec.c b/lib/iovec.c index 7a7c2da4cddf..df3abd1eaa4a 100644 --- a/lib/iovec.c +++ b/lib/iovec.c @@ -85,6 +85,10 @@ EXPORT_SYMBOL(memcpy_toiovecend); int memcpy_fromiovecend(unsigned char *kdata, const struct iovec *iov, int offset, int len) { + /* No data? Done! */ + if (len == 0) + return 0; + /* Skip over the finished iovecs */ while (offset >= iov->iov_len) { offset -= iov->iov_len;