Skip to content
Snippets Groups Projects
Commit b7e51a16 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard
Browse files

ntdll: Append ntdll.dll to the builtin_modules list.

parent 3f8d60e2
No related branches found
No related tags found
No related merge requests found
......@@ -1301,7 +1301,10 @@ static HMODULE load_ntdll(void)
if ((fd = open( name, O_RDONLY )) != -1)
{
status = virtual_map_ntdll( fd, &module );
struct stat st;
fstat( fd, &st );
if (!(status = virtual_map_ntdll( fd, &module )))
add_builtin_module( module, NULL, &st );
close( fd );
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment