mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
float: fix buffer overrun
Fix a buffer overrun; generally causing hexadecimal constants to be incorrectly rejected.
This commit is contained in:
parent
0b826ac316
commit
5aa689f80d
4
float.c
4
float.c
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user