signal: Use correct type for si_band in siginfo_t [BZ #23562]

(cherry picked from commit f997b4be18)
This commit is contained in:
Ilya Yu. Malakhov 2018-10-22 13:03:57 +02:00 committed by Florian Weimer
parent 314e181dc9
commit 69d1e73d99
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2018-10-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
[BZ #23562]
* sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
(struct siginfo_t): Use correct type for si_band.
2018-10-17 Stefan Liebler <stli@linux.ibm.com> 2018-10-17 Stefan Liebler <stli@linux.ibm.com>
[BZ #23275] [BZ #23275]

1
NEWS
View File

@ -13,6 +13,7 @@ The following bugs are resolved with this release:
[23497] readdir64@GLIBC_2.1 cannot parse the kernel directory stream [23497] readdir64@GLIBC_2.1 cannot parse the kernel directory stream
[23521] nss_files aliases database file stream leak [23521] nss_files aliases database file stream leak
[23538] pthread_cond_broadcast: Fix waiters-after-spinning case [23538] pthread_cond_broadcast: Fix waiters-after-spinning case
[23562] signal: Use correct type for si_band in siginfo_t
[23578] regex: Fix memory overread in re_compile_pattern [23578] regex: Fix memory overread in re_compile_pattern
[23579] libc: Errors misreported in preadv2 [23579] libc: Errors misreported in preadv2
[23606] Missing ENDBR32 in sysdeps/i386/start.S [23606] Missing ENDBR32 in sysdeps/i386/start.S

View File

@ -107,7 +107,7 @@ typedef struct
/* SIGPOLL. */ /* SIGPOLL. */
struct struct
{ {
long int si_band; /* Band event for SIGPOLL. */ __SI_BAND_TYPE si_band; /* Band event for SIGPOLL. */
int si_fd; int si_fd;
} _sigpoll; } _sigpoll;