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:
netchild 2010-10-06 07:34:41 +00:00
parent 77748dfb9c
commit 77b4c590d7

View File

@ -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;
/*