mirror of git://sourceware.org/git/glibc.git
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;
|
int error;
|
||||||
} d[nfds];
|
} d[nfds];
|
||||||
sigset_t oset;
|
sigset_t oset;
|
||||||
struct hurd_sigstate *ss;
|
struct hurd_sigstate *ss = NULL;
|
||||||
|
|
||||||
union typeword /* Use this to avoid unkosher casts. */
|
union typeword /* Use this to avoid unkosher casts. */
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue