summaryrefslogtreecommitdiff
path: root/plugins/pychrysa/format/elf/elf.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysa/format/elf/elf.c')
-rw-r--r--plugins/pychrysa/format/elf/elf.c2
1 files changed, 1 insertions, 1 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));