From 2f98c59adbc3f72b074d4a263e28a573df53423b Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Sat, 6 Sep 2008 22:20:13 +0200 Subject: [PATCH] dbghelp: Silence 0x112c symbol type. --- dlls/dbghelp/msc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index da6c710e724..1a28091473a 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/dbghelp/msc.c @@ -1746,6 +1746,10 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root TRACE("S-Align V1\n"); break; + case 0x112c: + TRACE("Unsupported symbol id %x\n", sym->generic.id); + break; + default: FIXME("Unsupported symbol id %x\n", sym->generic.id); dump(sym, 2 + sym->generic.len);