From b675ac3919b1252e032fb54b858c4e0ec1ccf701 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Fri, 5 Jan 2007 21:43:00 +0100 Subject: [PATCH] winedump: Handling of S_SALIGN symbols. --- tools/winedump/msc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/winedump/msc.c b/tools/winedump/msc.c index d423d095573..a516afb3303 100644 --- a/tools/winedump/msc.c +++ b/tools/winedump/msc.c @@ -1158,6 +1158,10 @@ int codeview_dump_symbols(const void* root, unsigned long size) } break; + case S_ALIGN_V1: + /* simply skip it */ + break; + default: printf(">>> Unsupported symbol-id %x sz=%d\n", sym->generic.id, sym->generic.len + 2); dump_data((const void*)sym, sym->generic.len + 2, " ");