dbghelp/stabs: Ignore the N_OSO type used on Darwin.

This commit is contained in:
Ken Thomases 2009-03-11 09:05:32 -05:00 committed by Alexandre Julliard
parent 1f4ddbaed9
commit 1ecd634c4b
1 changed files with 2 additions and 0 deletions

View File

@ -79,6 +79,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
#define N_SLINE 0x44
#define N_ENSYM 0x4e
#define N_SO 0x64
#define N_OSO 0x66
#define N_LSYM 0x80
#define N_BINCL 0x82
#define N_SOL 0x84
@ -1522,6 +1523,7 @@ BOOL stabs_parse(struct module* module, unsigned long load_offset,
break;
case N_BNSYM:
case N_ENSYM:
case N_OSO:
/* Always ignore these, they seem to be used only on Darwin. */
break;
default: