diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/pychrysa/format/elf/elf.c | 2 | ||||
-rw-r--r-- | plugins/pychrysa/plugin.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysa/format/elf/elf.c b/plugins/pychrysa/format/elf/elf.c index 5e8b4d1..3ae8f53 100644 --- a/plugins/pychrysa/format/elf/elf.c +++ b/plugins/pychrysa/format/elf/elf.c @@ -65,7 +65,7 @@ static PyObject *py_elf_format_new(PyTypeObject *type, PyObject *args, PyObject ret = PyArg_ParseTuple(args, "s#", &content, &length); if (!ret) Py_RETURN_NONE; - format = g_elf_format_new(content, length); + format = NULL;//g_elf_format_new(content, length); if (format == NULL) Py_RETURN_NONE; result = pygobject_new(G_OBJECT(format)); diff --git a/plugins/pychrysa/plugin.c b/plugins/pychrysa/plugin.c index 60a9ad7..0a27fa1 100644 --- a/plugins/pychrysa/plugin.c +++ b/plugins/pychrysa/plugin.c @@ -248,7 +248,7 @@ GPluginModule *g_python_plugin_new(const char *modname, const char *filename) G_PLUGIN_MODULE(result)->init = (init_plugin_fc)g_python_plugin_do_init; G_PLUGIN_MODULE(result)->get_action = (get_plugin_action_fc)g_python_plugin_get_action; - G_PLUGIN_MODULE(result)->is_matching = (is_matching_fc)g_python_plugin_is_matching; + //G_PLUGIN_MODULE(result)->is_matching = (is_matching_fc)g_python_plugin_is_matching; result->module = module; result->instance = instance; |