mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
abort_handler_s() currently simply calls abort(), though the standard specifies more: "Writes an implementation-defined message to stderr which must include the string pointed to by msg and calls abort()." memset_s() is missing error condition "n > smax", and does not invoke the constraint handler after filling the buffer: "following errors are detected at runtime and call the currently installed constraint handler function after storing ch in every location of the destination range [dest, dest+destsz) if dest and destsz are themselves valid", one of the errors is "n > smax" itself. Submitted by: Yuri Pankov <yuripv@gmx.com> MFC after: 1 week Differential revision: https://reviews.freebsd.org/D11991 |
||
|---|---|---|
| .. | ||
| Makefile | ||
| Makefile.depend | ||
| memcmp_test.c | ||
| memset_s_test.c | ||
| stpncpy_test.c | ||
| strerror_test.c | ||
| strxfrm_test.c | ||
| wcscasecmp_test.c | ||
| wcscoll_test.c | ||
| wcsnlen_test.c | ||