Revert "Don't overread or write memory returned by _DTOA_R"

This reverts commit efaef1bba2.
This commit is contained in:
Corinna Vinschen 2017-06-19 12:57:16 +02:00
parent 5ca286666a
commit 14ea06212b
1 changed files with 12 additions and 13 deletions

View File

@ -1631,18 +1631,12 @@ wcvt(struct _reent *data, _PRINTF_FLOAT_TYPE value, int ndigits, int flags,
{
char *digits, *bp, *rve;
#ifndef _MB_CAPABLE
int i;
#endif
digits = _DTOA_R (data, value, mode, ndigits, decpt, &dsgn, &rve);
#ifdef _MB_CAPABLE
_mbsnrtowcs_r (data, buf, (const char **) &digits, rve - digits,
len, NULL);
#else
for (i = 0; i < rve - digits && i < len; ++i)
buf[i] = (wchar_t) digits[i];
#endif
if ((ch != L'g' && ch != L'G') || flags & ALT) { /* Print trailing zeros */
bp = digits + ndigits;
if (ch == L'f' || ch == L'F') {
@ -1652,13 +1646,18 @@ wcvt(struct _reent *data, _PRINTF_FLOAT_TYPE value, int ndigits, int flags,
}
if (value == 0) /* kludge for __dtoa irregularity */
rve = bp;
for (i = rve - digits; i < bp - digits && i < len; ++i)
buf[i] = L'0';
rve = rve > bp ? rve : bp;
while (rve < bp)
*rve++ = '0';
}
*length = rve - digits; /* full length of the string */
#ifdef _MB_CAPABLE
_mbsnrtowcs_r (data, buf, (const char **) &digits, *length,
len, NULL);
#else
for (i = 0; i < *length && i < len; ++i)
buf[i] = (wchar_t) digits[i];
#endif
return buf;
}
}