mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 04:14:53 +00:00
[WINESYNC] dbghelp: Search also real path location in path_find_symbol_file.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id d731208602393877709d3bb0bdeb28c80f9719b0 by Jacek Caban <jacek@codeweavers.com>
This commit is contained in:
parent
95f6a74d85
commit
c82f34344e
2 changed files with 6 additions and 1 deletions
|
@ -664,6 +664,11 @@ BOOL path_find_symbol_file(const struct process* pcs, const struct module* modul
|
||||||
/* 2. check module-path */
|
/* 2. check module-path */
|
||||||
file_pathW(module->module.LoadedImageName, buffer);
|
file_pathW(module->module.LoadedImageName, buffer);
|
||||||
if (do_searchW(filename, buffer, FALSE, module_find_cb, &mf)) return TRUE;
|
if (do_searchW(filename, buffer, FALSE, module_find_cb, &mf)) return TRUE;
|
||||||
|
if (module->real_path)
|
||||||
|
{
|
||||||
|
file_pathW(module->real_path, buffer);
|
||||||
|
if (do_searchW(filename, buffer, FALSE, module_find_cb, &mf)) return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
while (searchPath)
|
while (searchPath)
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,4 +4,4 @@ files:
|
||||||
include/dbghelp.h: sdk/include/psdk/dbghelp.h
|
include/dbghelp.h: sdk/include/psdk/dbghelp.h
|
||||||
include/wine/mscvpdb.h: sdk/include/reactos/wine/mscvpdb.h
|
include/wine/mscvpdb.h: sdk/include/reactos/wine/mscvpdb.h
|
||||||
tags:
|
tags:
|
||||||
wine: e21b61392cbc3a4879f837316c869c44b8dcf685
|
wine: d731208602393877709d3bb0bdeb28c80f9719b0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue