bpo-38156: Fix compiler warning in PyOS_StdioReadline() (GH-21721)
incr cannot be larger than INT_MAX: downcast to int explicitly.
This commit is contained in:
parent
701b63894f
commit
bde48fd811
|
@ -317,7 +317,7 @@ PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
p = pr;
|
p = pr;
|
||||||
int err = my_fgets(tstate, p + n, incr, sys_stdin);
|
int err = my_fgets(tstate, p + n, (int)incr, sys_stdin);
|
||||||
if (err == 1) {
|
if (err == 1) {
|
||||||
// Interrupt
|
// Interrupt
|
||||||
PyMem_RawFree(p);
|
PyMem_RawFree(p);
|
||||||
|
|
Loading…
Reference in New Issue