Commit 47f1c5a9 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

dbghelp: Clear N_PEXT flag of stab type in macho files.

parent 208719a7
......@@ -1349,7 +1349,10 @@ BOOL stabs_parse(struct module* module, ULONG_PTR load_offset,
if (stab_ptr->n_type & N_STAB)
type = stab_ptr->n_type;
else
{
type = (stab_ptr->n_type & N_TYPE);
if (module->type == DMT_MACHO) type &= ~N_PEXT;
}
/* only symbol entries contain a typedef */
switch (type)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment