CVSROOT: /cvs Module name: src Changes by: mill...@cvs.openbsd.org 2024/07/14 07:31:50
Modified files: lib/libc/stdio : vfprintf.c Log message: Fix printf(3) signal safety for wide character strings. The %ls (wide char string) support in printf(3) currently uses malloc(3), which violates the promise in in sigaction(2). This makes it use mmap(2) instead. OK deraadt@