Re: [PATCH v9 0/6] MR9147: rometadata: Implement CIL assembly/metadata reader + some IMetaDataTables methods.
13 Oct
2025
13 Oct
'25
9:20 a.m.
Hans Leidekker (@hans) commented about dlls/rometadata/assembly.c:
+ ULONG i; + + for (i = 0; i < TABLE_MAX; i++) + { + struct table_schema *schema = table_schemas[i]; + ULONG j; + + for (j = 0; j < schema->columns_len; j++) + { + if (schema->columns[j].primary_key) + { + schema->key_idx = j; + break; + } + } + } This is static data, it should be possible to encode this without an init function.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9147#note_118349
68
Age (days ago)
68
Last active (days ago)
0 comments
1 participants
participants (1)
-
Hans Leidekker (@hans)