CVS: cvs.openbsd.org: src
Florian Obser <[email protected]>
| Newsgroups | gmane.os.openbsd.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/08/14 09:57:30 Modified files: sbin/dhcpleased: engine.c Log message: Prevent read buffer overflow in verbose debug logging. When we receive more than 8 nameservers in a DHCP lease we would overread the nameservers buffer because the loop was not bounded by items in the array but the whole size. Pointed out by Stuart Thomas some time ago, thanks!