CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2023/06/21 07:11:49
Modified files: lib/libc/stdio : open_memstream.c open_wmemstream.c Log message: Use recallocarray() consistently. recallocarray() was introduced to simplify exactly this use case where the new memory needs to be zeroed during resize. Since recallocarray() takes care of all this there is no need to bzero() memory anymore. OK tb@ millert@