Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 269 of file io.c.
Referenced by fs_close().
{ CHANGE *this; int old_write_immed = (FsCheckFlags & FSCHECK_IMMEDIATE_WRITE); /* Disable writes to the list now */ FsCheckFlags |= FSCHECK_IMMEDIATE_WRITE; while (changes) { this = changes; changes = changes->next; fs_write(this->pos, this->size, this->data); vffree(this->data); vffree(this); } /* Restore values */ if (!old_write_immed) FsCheckFlags ^= FSCHECK_IMMEDIATE_WRITE; }