Fix a comparision of an uninitialised pointer.
Submitted by: arundel Found by: clang analysis (automatic service by uqs@) Reviewed by: rdivacky
This commit is contained in:
parent
77748dfb9c
commit
77b4c590d7
@ -431,7 +431,7 @@ linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
|
||||
int op_ret, val, ret, nrwake;
|
||||
struct linux_emuldata *em;
|
||||
struct waiting_proc *wp;
|
||||
struct futex *f, *f2;
|
||||
struct futex *f, *f2 = NULL;
|
||||
int error = 0;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user