mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix uninitialized bool in kernel Descriptor class.
This commit is contained in:
parent
24321b0f96
commit
6cf417532e
1 changed files with 1 additions and 0 deletions
|
@ -108,6 +108,7 @@ Descriptor::Descriptor(Ref<Vnode> vnode, int dflags)
|
|||
this->type = vnode->type;
|
||||
this->dflags = dflags;
|
||||
checked_seekable = false;
|
||||
seekable = false /* unused */;
|
||||
curoff = 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue