diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-02-03 09:37:30 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-02-03 09:38:24 +0100 |
commit | ee9941f94ea838774c34f60b3397fba07a803d92 (patch) | |
tree | 082d81424de2bb74bd63f0087869c956ea437ad7 /libio/Makefile | |
parent | c70824b9a4645c0ecd049da8cfdb2c28ae7ada23 (diff) | |
download | glibc-ee9941f94ea838774c34f60b3397fba07a803d92.tar.gz glibc-ee9941f94ea838774c34f60b3397fba07a803d92.tar.xz glibc-ee9941f94ea838774c34f60b3397fba07a803d92.zip |
libio: Use stdin consistently for input functions [BZ #24153]
The internal _IO_stdin_ variable is not updated when the application assigns to stdin, which is a GNU extension.
Diffstat (limited to 'libio/Makefile')
-rw-r--r-- | libio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/Makefile b/libio/Makefile index dbeba88fc0..95b91084dd 100644 --- a/libio/Makefile +++ b/libio/Makefile @@ -65,7 +65,7 @@ tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc \ tst-setvbuf1 tst-popen1 tst-fgetwc bug-wsetpos tst-fseek \ tst-fwrite-error tst-ftell-partial-wide tst-ftell-active-handler \ tst-ftell-append tst-fputws tst-bz22415 tst-fgetc-after-eof \ - tst-sprintf-ub tst-sprintf-chk-ub tst-bz24051 + tst-sprintf-ub tst-sprintf-chk-ub tst-bz24051 tst-bz24153 tests-internal = tst-vtables tst-vtables-interposed tst-readline |