fix an uninitialized-variable problem in an error case.
pointed out by Simon Burge.
This commit is contained in:
parent
2576af45bb
commit
1c97701b8b
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: uvm_pager.c,v 1.50 2001/09/15 20:36:47 chs Exp $ */
|
/* $NetBSD: uvm_pager.c,v 1.51 2001/10/15 00:37:51 chs Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
@ -325,7 +325,8 @@ uvm_aio_aiodone(bp)
|
|||||||
simple_lock(slock);
|
simple_lock(slock);
|
||||||
uvm_lock_pageq();
|
uvm_lock_pageq();
|
||||||
} else if (error) {
|
} else if (error) {
|
||||||
if (pgs[0]->pqflags & PQ_ANON) {
|
pg = pgs[0];
|
||||||
|
if (pg->pqflags & PQ_ANON) {
|
||||||
swslot = pg->uanon->an_swslot;
|
swslot = pg->uanon->an_swslot;
|
||||||
} else {
|
} else {
|
||||||
swslot = uao_find_swslot(pg->uobject, pg->offset);
|
swslot = uao_find_swslot(pg->uobject, pg->offset);
|
||||||
|
Loading…
Reference in New Issue
Block a user