ntdll: Avoid compiler warning in the default case in append_entry.
This commit is contained in:
parent
3ecea9f826
commit
dfa200d1e8
|
@ -1120,6 +1120,7 @@ static union file_directory_info *append_entry( void *info_ptr, IO_STATUS_BLOCK
|
||||||
|
|
||||||
default:
|
default:
|
||||||
assert(0);
|
assert(0);
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
memcpy( filename, long_nameW, total_len - ((char *)filename - (char *)info) );
|
memcpy( filename, long_nameW, total_len - ((char *)filename - (char *)info) );
|
||||||
io->Information += total_len;
|
io->Information += total_len;
|
||||||
|
|
Loading…
Reference in New Issue