Module: wine Branch: master Commit: 8980a6fa5c1128650d478739debef10f56bcd300 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8980a6fa5c1128650d478739de...
Author: Austin English austinenglish@gmail.com Date: Fri Jul 11 19:17:35 2014 -0700
dbghelp: Ignore a few more symbol ids.
---
dlls/dbghelp/msc.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index d797a4a..5e8804f 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/dbghelp/msc.c @@ -1988,7 +1988,12 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* roo case S_SECTINFO_V3: case S_SUBSECTINFO_V3: case S_ENTRYPOINT_V3: + case 0x113e: case 0x1139: + case 0x1141: + case 0x1142: + case 0x1143: + case 0x1144: TRACE("Unsupported symbol id %x\n", sym->generic.id); break;