git: 056c50c48be3 - stable/14 - libnv: correct the calculation of the structure's size
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 15 Sep 2024 14:59:39 UTC
The branch stable/14 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=056c50c48be3e3828ef740d2fcce988a545e52aa commit 056c50c48be3e3828ef740d2fcce988a545e52aa Author: Mariusz Zaborski <oshogbo@FreeBSD.org> AuthorDate: 2024-09-11 14:43:43 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2024-09-15 14:59:15 +0000 libnv: correct the calculation of the structure's size Reported by: Milosz Kaniewski <milosz.kaniewski@gmail.com> (cherry picked from commit 7f4731ab67f1d3345aee6626eb83cc5ce00010f0) --- sys/contrib/libnv/nvlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/contrib/libnv/nvlist.c b/sys/contrib/libnv/nvlist.c index 64078b10973e..92d6e655876a 100644 --- a/sys/contrib/libnv/nvlist.c +++ b/sys/contrib/libnv/nvlist.c @@ -1029,7 +1029,7 @@ static bool nvlist_check_header(struct nvlist_header *nvlhdrp) { - if (nvlhdrp->nvlh_size > SIZE_MAX - sizeof(nvlhdrp)) { + if (nvlhdrp->nvlh_size > SIZE_MAX - sizeof(*nvlhdrp)) { ERRNO_SET(EINVAL); return (false); }