mirror of
https://github.com/reactos/reactos.git
synced 2024-11-24 20:13:31 +08:00
[WINESYNC] dbghelp: Ignore N_INDR symbols.
These are aliases for another symbol. They are often seen on Mac OS when a dylib reexports some symbols defined in another dylib. Signed-off-by: Chip Davis <cdavis@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 53b5c3b6c674f4bd6d02f20986598b5b6580a2d8 by Chip Davis <cdavis@codeweavers.com>
This commit is contained in:
parent
9a390991b8
commit
4959c2568a
@ -82,6 +82,9 @@ WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
|
||||
#ifndef N_ABS
|
||||
#define N_ABS 0x02
|
||||
#endif
|
||||
#ifndef N_INDR
|
||||
#define N_INDR 0x0a
|
||||
#endif
|
||||
#ifndef N_SECT
|
||||
#define N_SECT 0x0e
|
||||
#endif
|
||||
@ -1625,6 +1628,7 @@ BOOL stabs_parse(struct module* module, ULONG_PTR load_offset,
|
||||
case N_BNSYM:
|
||||
case N_ENSYM:
|
||||
case N_OSO:
|
||||
case N_INDR:
|
||||
/* Always ignore these, they seem to be used only on Darwin. */
|
||||
break;
|
||||
case N_ABS:
|
||||
|
@ -4,4 +4,4 @@ files:
|
||||
include/dbghelp.h: sdk/include/psdk/dbghelp.h
|
||||
include/wine/mscvpdb.h: sdk/include/reactos/wine/mscvpdb.h
|
||||
tags:
|
||||
wine: 88edff846714422c9f875fe6c9e509ee34072d27
|
||||
wine: 53b5c3b6c674f4bd6d02f20986598b5b6580a2d8
|
||||
|
Loading…
Reference in New Issue
Block a user