* win32-low.c (win32_add_one_solib): If the dll name is

"ntdll.dll", prepend the system directory to the dll path.
This commit is contained in:
Pedro Alves 2009-11-26 22:14:39 +00:00
parent 28d5f67740
commit cf6e347119
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-11-26 Pedro Alves <pedro@codesourcery.com>
* win32-low.c (win32_add_one_solib): If the dll name is
"ntdll.dll", prepend the system directory to the dll path.
2009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
* m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.

View File

@ -906,6 +906,14 @@ win32_add_one_solib (const char *name, CORE_ADDR load_addr)
#endif
}
#ifndef _WIN32_WCE
if (strcasecmp (buf, "ntdll.dll") == 0)
{
GetSystemDirectoryA (buf, sizeof (buf));
strcat (buf, "\\ntdll.dll");
}
#endif
#ifdef __CYGWIN__
cygwin_conv_to_posix_path (buf, buf2);
#else