Module: wine Branch: master Commit: 1ecd634c4b377c752ab45b8560de84ec9ea70750 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1ecd634c4b377c752ab45b8560...
Author: Ken Thomases ken@codeweavers.com Date: Wed Mar 11 09:05:32 2009 -0500
dbghelp/stabs: Ignore the N_OSO type used on Darwin.
---
dlls/dbghelp/stabs.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/dbghelp/stabs.c b/dlls/dbghelp/stabs.c index cbc0e2f..6605c96 100644 --- a/dlls/dbghelp/stabs.c +++ b/dlls/dbghelp/stabs.c @@ -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: