mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-12 04:00:17 +00:00
hurd: Avoid spurious warning
Compilers missing some flow analysis may think ss may be used uninitialized.
This commit is contained in:
parent
77a34079d8
commit
df183287ff
@ -67,7 +67,7 @@ _hurd_select (int nfds,
|
||||
int error;
|
||||
} d[nfds];
|
||||
sigset_t oset;
|
||||
struct hurd_sigstate *ss;
|
||||
struct hurd_sigstate *ss = NULL;
|
||||
|
||||
union typeword /* Use this to avoid unkosher casts. */
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user