mirror of https://github.com/python/cpython
Issue #28333: Remove unnecessary increment.
This commit is contained in:
parent
3cd187b9f5
commit
59bd34fa8a
|
@ -218,7 +218,7 @@ PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt)
|
||||||
int wlen;
|
int wlen;
|
||||||
wlen = MultiByteToWideChar(CP_UTF8, 0, prompt, -1,
|
wlen = MultiByteToWideChar(CP_UTF8, 0, prompt, -1,
|
||||||
NULL, 0);
|
NULL, 0);
|
||||||
if (wlen++ &&
|
if (wlen &&
|
||||||
(wbuf = PyMem_RawMalloc(wlen * sizeof(wchar_t)))) {
|
(wbuf = PyMem_RawMalloc(wlen * sizeof(wchar_t)))) {
|
||||||
wlen = MultiByteToWideChar(CP_UTF8, 0, prompt, -1,
|
wlen = MultiByteToWideChar(CP_UTF8, 0, prompt, -1,
|
||||||
wbuf, wlen);
|
wbuf, wlen);
|
||||||
|
|
Loading…
Reference in New Issue