Stubbed XFileAllocationInformation and XFileEndOfFileInformation in NtSetInformationFile.
This commit is contained in:
parent
f1d0fe909f
commit
90d6c81161
|
@ -434,6 +434,12 @@ SHIM_CALL NtSetInformationFile_shim(PPCContext* ppc_state, KernelState* state) {
|
||||||
info = 8;
|
info = 8;
|
||||||
file->set_position(SHIM_MEM_64(file_info_ptr));
|
file->set_position(SHIM_MEM_64(file_info_ptr));
|
||||||
break;
|
break;
|
||||||
|
case XFileAllocationInformation:
|
||||||
|
case XFileEndOfFileInformation:
|
||||||
|
assert_true(length == 8);
|
||||||
|
info = 8;
|
||||||
|
XELOGW("NtSetInformationFile ignoring alloc/eof");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
// Unsupported, for now.
|
// Unsupported, for now.
|
||||||
assert_always();
|
assert_always();
|
||||||
|
|
Loading…
Reference in New Issue