diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-01-21 18:49:45 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-01-21 18:49:45 (GMT) |
commit | e10081897750e74dfd01266606870aab3638cfbf (patch) | |
tree | b9fbb90301a9ca443af82e3f9dd5e58f05dfbbe3 /plugins/pychrysalide/format | |
parent | 7c04cf1a2dcc9e04ce8f280f399d6904053e89d9 (diff) |
Provided a way to register new available processors from Python.
Diffstat (limited to 'plugins/pychrysalide/format')
-rw-r--r-- | plugins/pychrysalide/format/executable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysalide/format/executable.c b/plugins/pychrysalide/format/executable.c index cc0dd33..906fae5 100644 --- a/plugins/pychrysalide/format/executable.c +++ b/plugins/pychrysalide/format/executable.c @@ -320,7 +320,7 @@ int convert_to_vmpa_using_executable(PyObject *obj, exe_cv_info_t *info) { arch = g_exe_format_get_target_machine(info->format); - conv.proc = get_arch_processor_for_type(arch); + conv.proc = get_arch_processor_for_name(arch); if (conv.proc != NULL) { |