mirror of https://github.com/python/cpython
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:
parent
b9650a04a8
commit
efd2bac156
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue