mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[WINESYNC] dbghelp: Clear N_PEXT flag of stab type in macho files.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 47f1c5a993ed34e5f1e4783360019613d0f9682a by Jacek Caban <jacek@codeweavers.com>
This commit is contained in:
parent
e99c66b8bc
commit
2d57c6b88f
2 changed files with 4 additions and 1 deletions
|
@ -1357,7 +1357,10 @@ BOOL stabs_parse(struct module* module, ULONG_PTR load_offset,
|
||||||
if (stab_ptr->n_type & N_STAB)
|
if (stab_ptr->n_type & N_STAB)
|
||||||
type = stab_ptr->n_type;
|
type = stab_ptr->n_type;
|
||||||
else
|
else
|
||||||
|
{
|
||||||
type = (stab_ptr->n_type & N_TYPE);
|
type = (stab_ptr->n_type & N_TYPE);
|
||||||
|
if (module->type == DMT_MACHO) type &= ~N_PEXT;
|
||||||
|
}
|
||||||
|
|
||||||
/* only symbol entries contain a typedef */
|
/* only symbol entries contain a typedef */
|
||||||
switch (type)
|
switch (type)
|
||||||
|
|
|
@ -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: 208719a7507c41b77d3db9f6b8ffbcc5a4e02f3d
|
wine: 47f1c5a993ed34e5f1e4783360019613d0f9682a
|
||||||
|
|
Loading…
Reference in a new issue