diff options
| author | Mariusz Zaborski <oshogbo@FreeBSD.org> | 2024-09-11 14:43:43 +0000 |
|---|---|---|
| committer | Gordon Tetlow <gordon@FreeBSD.org> | 2024-09-19 13:10:29 +0000 |
| commit | f67468e6e5e27661e18561a3bcff9448d055b95e (patch) | |
| tree | 249ae98894d55a1e5e48abe13d65c502aeea21bb | |
| parent | 3c6c0dcb5acbc4c98633006322281c592e4e4e24 (diff) | |
libnv: correct the calculation of the structure's size
Reported by: Milosz Kaniewski <milosz.kaniewski@gmail.com>
Approved by: so
Security: FreeBSD-SA-24:16.libnv
Security: CVE-2024-45287
(cherry picked from commit 7f4731ab67f1d3345aee6626eb83cc5ce00010f0)
(cherry picked from commit 056c50c48be3e3828ef740d2fcce988a545e52aa)
| -rw-r--r-- | sys/contrib/libnv/nvlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
