o In aio_cancel(2), make sure that p->p_aioinfo isn't NULL before
dereferencing it. Submitted by: saureen <sshah@apple.com>
This commit is contained in:
parent
f0c534b189
commit
4aa2a3a4fe
@ -1775,6 +1775,8 @@ aio_cancel(struct thread *td, struct aio_cancel_args *uap)
|
||||
}
|
||||
}
|
||||
ki=p->p_aioinfo;
|
||||
if (ki == NULL)
|
||||
return (EINVAL);
|
||||
s = splnet();
|
||||
|
||||
for (cbe = TAILQ_FIRST(&ki->kaio_jobqueue); cbe; cbe = cbn) {
|
||||
|
Loading…
Reference in New Issue
Block a user