float: fix buffer overrun

Fix a buffer overrun; generally causing hexadecimal constants to be
incorrectly rejected.
This commit is contained in:
H. Peter Anvin 2008-07-03 20:11:30 -07:00
parent 0b826ac316
commit 5aa689f80d

View File

@ -556,10 +556,10 @@ static bool ieee_flconvert_bin(const char *string, int bits,
}
if (!seendigit) {
memset(mant, 0, sizeof mult); /* Zero */
memset(mant, 0, MANT_LIMBS*sizeof(fp_limb)); /* Zero */
*exponent = 0;
} else {
memcpy(mant, mult, sizeof mult);
memcpy(mant, mult, MANT_LIMBS*sizeof(fp_limb));
*exponent = twopwr;
}