Also add all methods found in VTableFixups

This commit is contained in:
de4dot 2012-11-16 20:52:10 +01:00
parent bbea77807e
commit 4be5776da7

View File

@ -159,6 +159,16 @@ namespace de4dot.code.renamer.asmmodules {
add(mod.ExportedTypes);
if (mod.IsManifestModule)
add(mod.Assembly);
add(mod.VTableFixups);
}
void add(VTableFixups fixups) {
if (fixups == null)
return;
foreach (var fixup in fixups) {
foreach (var method in fixup)
push(method);
}
}
void add(AssemblyDef asm) {