We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cbc2c5 commit efe333eCopy full SHA for efe333e
src/fread.c
@@ -927,10 +927,10 @@ static void parse_double_hexadecimal(FieldParseContext *ctx)
927
if (neg) ch++;
928
else if (*ch == '+') ch++;
929
930
- bool subnormal;
+ bool subnormal = false;
931
932
if (ch[0] == '0' && (ch[1] == 'x' || ch[1] == 'X') &&
933
- (ch[2] == '1' || (subnormal = ch[2] == '0')) && ch[3] == '.') {
+ (ch[2] == '1' || (subnormal = (ch[2] == '0'))) && ch[3] == '.') {
934
ch += 4;
935
uint64_t acc = 0;
936
uint8_t digit;
0 commit comments