Skip to content

Commit e850ac1

Browse files
refine comment
1 parent b1f691f commit e850ac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ static void parse_double_hexadecimal(FieldParseContext *ctx)
931931

932932
// Important!
933933
// Keep in mind that only ch[0] is guaranteed to be mapped.
934-
// Rearanging these checks will lead to segfaults in rare cases.
934+
// Rearranging these checks (e.g. to make 'subnormal' const) will lead to segfaults in rare cases.
935935
if (ch[0] == '0' && (ch[1] == 'x' || ch[1] == 'X') &&
936936
(ch[2] == '1' || (subnormal = (ch[2] == '0'))) && ch[3] == '.') {
937937
ch += 4;

0 commit comments

Comments
 (0)