mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
1d7c660a13
commit
5e82f12aca
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue