Fix uninitialized bool in kernel Descriptor class.

This commit is contained in:
Jonas 'Sortie' Termansen 2014-04-13 21:29:00 +02:00
parent 24321b0f96
commit 6cf417532e
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}