| author | |
| committer | |
| log | 1af28aebd7385104d31f8a7e5e307600b97cad5a |
| tree | 201edd0ef2326967bf4483a04970c17318587448 |
| parent | 1e6ee420f73fe5eea040f24ef7efb417c5eeb3ed |
| signature |
https://www.openwall.com/lists/musl/2026/05/21/32 files changed, 2 insertions(+), 2 deletions(-)
lib/libc/musl/src/internal/floatscan.c+1-1| ... | ... | @@ -347,7 +347,7 @@ static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) |
| 347 | 347 | 			else d = c-'0'; |
| 348 | 348 | 			if (dc<8) { |
| 349 | 349 | 				x = x*16 + d; |
| 350 | 			} else if (dc < LDBL_MANT_DIG/4+1) { | |
| 350 | 			} else if (dc < (LDBL_MANT_DIG+3)/4+1) { | |
| 351 | 351 | 				y += d*(scale/=16); |
| 352 | 352 | 			} else if (d && !gottail) { |
| 353 | 353 | 				y += 0.5*scale; |
lib/libc/wasi/libc-top-half/musl/src/internal/floatscan.c+1-1| ... | ... | @@ -388,7 +388,7 @@ static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) |
| 388 | 388 | 			else d = c-'0'; |
| 389 | 389 | 			if (dc<8) { |
| 390 | 390 | 				x = x*16 + d; |
| 391 | 			} else if (dc < LDBL_MANT_DIG/4+1) { | |
| 391 | 			} else if (dc < (LDBL_MANT_DIG+3)/4+1) { | |
| 392 | 392 | 				y += d*(scale/=16); |
| 393 | 393 | 			} else if (d && !gottail) { |
| 394 | 394 | 				y += 0.5*scale; |