Fix strncpy warning with gcc 8 (#5840)

The length in strncpy is one char too short and as a result it leads
to a build warning with gcc 8.  Comment out the strncpy since the
interpreter aborts immediately after anyway.
This commit is contained in:
Siddhesh Poyarekar 2018-03-06 16:04:35 +05:30 committed by Xiang Zhang
parent b9650a04a8
commit efd2bac156
1 changed files with 2 additions and 2 deletions

View File

@ -1060,8 +1060,8 @@ format_float_short(double d, char format_code,
else {
/* shouldn't get here: Gay's code should always return
something starting with a digit, an 'I', or 'N' */
strncpy(p, "ERR", 3);
/* p += 3; */
/* strncpy(p, "ERR", 3);
p += 3; */
Py_UNREACHABLE();
}
goto exit;