From: Gabriel Ravier Date: Fri, 14 Apr 2023 14:55:42 +0000 (+0200) Subject: fix wide printf numbered argument buffer overflow X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=4724793f96b163e95cb15e1b7374ff2b0434ed15;hp=4724793f96b163e95cb15e1b7374ff2b0434ed15;p=musl fix wide printf numbered argument buffer overflow The nl_type and nl_arg arrays defined in vfwprintf may be accessed with an index up to and including NL_ARGMAX, but they are only of size NL_ARGMAX, meaning they may be written to or read from 1 element too far. ---