Kyle Lippincott
b928d57ca9
set errno=0 before strtoX calls
...
To detect conversion failure after calls to functions like `strtod`, one
can check `errno == ERANGE`. These functions are not guaranteed to set
`errno` to `0` on successful conversion, however. Manual manipulation of
`errno` can likely be avoided by checking that the output pointer
differs from the input pointer, but that's not how other locations, such
as parse.c:139, handle this issue; they set errno to 0 prior to
executing the function.
For every place I could find a strtoX function with an ERANGE check
following it, set `errno = 0;` prior to executing the conversion
function.
Signed-off-by: Kyle Lippincott <spectral@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2024-08-05 10:59:20 -07:00
..
2023-03-21 10:56:54 -07:00
2024-07-02 09:59:00 -07:00
2024-07-08 14:53:10 -07:00
2024-06-14 09:34:39 -07:00
2024-06-14 10:26:33 -07:00
2023-04-14 10:27:52 -07:00
2023-06-28 14:06:40 -07:00
2023-02-23 17:25:28 -08:00
2022-01-17 14:17:48 -08:00
2024-04-05 15:21:14 -07:00
2023-10-02 14:57:40 -07:00
2023-07-05 11:41:59 -07:00
2023-02-16 16:21:56 -08:00
2023-03-28 14:11:24 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2023-09-29 15:14:57 -07:00
2024-05-06 14:06:34 -07:00
2022-12-14 15:55:46 +09:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2023-02-16 08:30:38 -08:00
2024-06-14 10:26:33 -07:00
2023-03-21 10:56:51 -07:00
2024-06-07 10:30:48 -07:00
2023-03-28 14:11:24 -07:00
2024-08-05 10:59:20 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2023-04-24 12:47:33 -07:00
2024-06-14 10:26:34 -07:00
2023-03-28 14:11:24 -07:00
2024-06-14 10:26:33 -07:00
2024-06-11 13:15:04 -07:00
2023-03-21 10:56:51 -07:00
2024-06-14 10:26:34 -07:00
2024-05-24 16:57:43 -07:00
2023-02-23 17:25:28 -08:00
2024-02-08 16:22:11 -08:00
2024-06-14 10:26:35 -07:00
2023-03-21 10:56:51 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2024-07-08 14:53:10 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2024-07-02 08:12:24 -07:00
2024-06-07 10:30:48 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2024-06-07 10:30:48 -07:00
2024-05-06 14:06:34 -07:00
2024-06-14 10:26:33 -07:00
2023-03-21 10:56:54 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2023-03-28 14:11:24 -07:00
2023-12-26 12:04:31 -08:00
2023-05-09 16:45:46 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2024-06-14 10:26:33 -07:00
2023-03-21 10:56:54 -07:00
2022-09-02 09:16:23 -07:00
2024-07-03 09:12:14 -07:00
2024-07-03 09:12:14 -07:00
2024-08-05 10:59:20 -07:00
2023-10-13 13:33:35 -07:00
2022-07-01 13:38:49 -07:00
2023-06-28 14:06:39 -07:00
2023-06-21 13:39:54 -07:00
2024-06-14 10:26:33 -07:00
2023-03-28 14:11:24 -07:00