Module: wine Branch: master Commit: 272d7ab46a67cda384ef17f8238b1935f4b56222 URL: http://source.winehq.org/git/wine.git/?a=commit;h=272d7ab46a67cda384ef17f823...
Author: Rob Shearman rob@codeweavers.com Date: Wed Feb 21 17:11:22 2007 +0000
dbghelp: ImageName is usually blank, so print LoadedImageName in elf_load_debug_info_map.
---
dlls/dbghelp/elf_module.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c index 79feca5..bbce495 100644 --- a/dlls/dbghelp/elf_module.c +++ b/dlls/dbghelp/elf_module.c @@ -917,7 +917,7 @@ static BOOL elf_load_debug_info_from_map(struct module* module, if (fmap->with_crc && (fmap->crc != calc_crc32(fmap))) { ERR("Bad CRC for module %s (got %08x while expecting %08lx)\n", - module->module.ImageName, calc_crc32(fmap), fmap->crc); + module->module.LoadedImageName, calc_crc32(fmap), fmap->crc); /* we don't tolerate mis-matched files */ return FALSE; }