Commit dfa200d1 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

ntdll: Avoid compiler warning in the default case in append_entry.

parent 3ecea9f8
......@@ -1120,6 +1120,7 @@ static union file_directory_info *append_entry( void *info_ptr, IO_STATUS_BLOCK
default:
assert(0);
return NULL;
}
memcpy( filename, long_nameW, total_len - ((char *)filename - (char *)info) );
io->Information += total_len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment