Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed.
This commit is contained in:
parent
b8f02b5a5f
commit
e654c11f56
|
@ -10,6 +10,9 @@ What's New in Python 3.2.4
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #14433: Prevent msvcrt crash in interactive prompt when stdin
|
||||||
|
is closed.
|
||||||
|
|
||||||
- Issue #11603 (again): Setting __repr__ to __str__ now raises a RuntimeError
|
- Issue #11603 (again): Setting __repr__ to __str__ now raises a RuntimeError
|
||||||
when repr() or str() is called on such an object.
|
when repr() or str() is called on such an object.
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,10 @@ my_fgets(char *buf, int len, FILE *fp)
|
||||||
(void)(PyOS_InputHook)();
|
(void)(PyOS_InputHook)();
|
||||||
errno = 0;
|
errno = 0;
|
||||||
clearerr(fp);
|
clearerr(fp);
|
||||||
p = fgets(buf, len, fp);
|
if (_PyVerify_fd(fileno(fp)))
|
||||||
|
p = fgets(buf, len, fp);
|
||||||
|
else
|
||||||
|
p = NULL;
|
||||||
if (p != NULL)
|
if (p != NULL)
|
||||||
return 0; /* No error */
|
return 0; /* No error */
|
||||||
err = errno;
|
err = errno;
|
||||||
|
|
Loading…
Reference in New Issue