mirror of https://github.com/python/cpython
gh-114492: Initialize struct termios before calling tcgetattr() (GH-114495)
On Alpine Linux it could leave some field non-initialized.
This commit is contained in:
parent
ce01ab536f
commit
d22c066b80
|
@ -0,0 +1,2 @@
|
|||
Make the result of :func:`termios.tcgetattr` reproducible on Alpine Linux.
|
||||
Previously it could leave a random garbage in some fields.
|
|
@ -98,6 +98,8 @@ termios_tcgetattr_impl(PyObject *module, int fd)
|
|||
struct termios mode;
|
||||
int r;
|
||||
|
||||
/* Alpine Linux can leave some fields uninitialized. */
|
||||
memset(&mode, 0, sizeof(mode));
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
r = tcgetattr(fd, &mode);
|
||||
Py_END_ALLOW_THREADS
|
||||
|
|
Loading…
Reference in New Issue