harden dcngettext plural processing
authorRich Felker <dalias@aerifal.cx>
Tue, 29 Jul 2014 16:25:41 +0000 (12:25 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 29 Jul 2014 16:25:41 +0000 (12:25 -0400)
commite4dd0ab83cc191ba4e7d6e10328c30280d267ed9
tree5b2730477149f95bea44fddaac819f95952bfc8e
parent6e89210669dfc93302a181a80ed440132e41f0dd
harden dcngettext plural processing

while the __mo_lookup backend can verify that the translated message
ends with a null terminator, is has no way to know nplurals and thus
no way to verify that sufficiently many null terminators are present
in the string to satisfy all plural forms. the code in dcngettext was
already attempting to avoid reading past the end of the mo file
mapping, but failed to do so because the strlen call itself could
over-read. using strnlen instead allows us to avoid the problem.
src/locale/dcngettext.c