[PATCH 08/12] [WineDump, DbgHelp]: handling of S_SALIGN symbols

Eric Pouech eric.pouech at wanadoo.fr
Fri Jan 5 14:43:00 CST 2007




A+
---

 dlls/dbghelp/msc.c   |    4 ++++
 tools/winedump/msc.c |    4 ++++
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c
index d4d5edf..38e63b1 100644
--- a/dlls/dbghelp/msc.c
+++ b/dlls/dbghelp/msc.c
@@ -1645,6 +1645,10 @@ static int codeview_snarf(const struct m
             TRACE("Start search: seg=0x%x at offset 0x%08x\n",
                   sym->ssearch_v1.segment, sym->ssearch_v1.offset);
             break;
+ 
+        case S_ALIGN_V1:
+            TRACE("S-Align V1\n");
+            break;
 
         default:
             FIXME("Unsupported symbol id %x\n", sym->generic.id);
diff --git a/tools/winedump/msc.c b/tools/winedump/msc.c
index d423d09..a516afb 100644
--- a/tools/winedump/msc.c
+++ b/tools/winedump/msc.c
@@ -1158,6 +1158,10 @@ int codeview_dump_symbols(const void* ro
             }
             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, "  ");



More information about the wine-patches mailing list