[PATCH 0/1] MR8156: winedump: Also dump the Culture column of the Assembly table.
From: Hans Leidekker <hans(a)codeweavers.com> --- tools/winedump/pe.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c index 13817fb15e5..bdf0aca2ab0 100644 --- a/tools/winedump/pe.c +++ b/tools/winedump/pe.c @@ -3599,7 +3599,7 @@ static void print_clr_table_fieldrva( const BYTE **ptr, UINT *size, UINT row_cou static void print_clr_table_assembly( const BYTE **ptr, UINT *size, UINT row_count ) { static const char * const header[] = { "HashAlgId", "MajorVersion", "MinorVersion", "BuildNumber", - "RevisionNumber", "Flags", "PublicKey", "Name", NULL }; + "RevisionNumber", "Flags", "PublicKey", "Name", "Culture", NULL }; UINT i, row = 1; print_clr( "Assembly table\n" ); @@ -3616,6 +3616,7 @@ static void print_clr_table_assembly( const BYTE **ptr, UINT *size, UINT row_cou print_clr_uint( ptr, size, TRUE ); print_clr_blob_idx( ptr, size ); print_clr_string_idx( ptr, size ); + print_clr_string_idx( ptr, size ); printf( "\n" ); } clr_indent -= 4; @@ -3660,7 +3661,7 @@ static void print_clr_table_assemblyos( const BYTE **ptr, UINT *size, UINT row_c static void print_clr_table_assemblyref( const BYTE **ptr, UINT *size, UINT row_count ) { static const char * const header[] = { "MajorVersion", "MinorVersion", "BuildNumber", "RevisionNumber", "Flags", - "PublicKeyOrToken", "Name", "Culture", "HashValue", NULL }; + "PublicKey", "Name", "Culture", "HashValue", NULL }; UINT i, row = 1; print_clr( "AssemblyRef table\n" ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8156
participants (2)
-
Hans Leidekker -
Hans Leidekker (@hans)