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/06/25 13:27:51 Modified files: lib/libc/asr : asr_utils.c Log message: Do not silently truncate result of dname_expand. This can only happen if the caller provides a buffer that's too small. All current callers provide a buffer of size MAXDNAME, which is large enough in all cases, otherwise dname_check_label would error out. Found by me and independently by Andrew Griffiths. OK deraadt, tb