Issue #20947: Fixed a gcc warning with -Wstrict-overflow.
This commit is contained in:
commit
9574e0adf2
|
@ -521,7 +521,7 @@ error:
|
||||||
char *cur;
|
char *cur;
|
||||||
_Py_write_noraise(errpipe_write, "OSError:", 8);
|
_Py_write_noraise(errpipe_write, "OSError:", 8);
|
||||||
cur = hex_errno + sizeof(hex_errno);
|
cur = hex_errno + sizeof(hex_errno);
|
||||||
while (saved_errno != 0 && cur > hex_errno) {
|
while (saved_errno != 0 && cur != hex_errno) {
|
||||||
*--cur = Py_hexdigits[saved_errno % 16];
|
*--cur = Py_hexdigits[saved_errno % 16];
|
||||||
saved_errno /= 16;
|
saved_errno /= 16;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue