Commit b675ac39 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedump: Handling of S_SALIGN symbols.

parent 8a68e469
......@@ -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, " ");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment