summaryrefslogtreecommitdiff
path: root/plugins/pychrysa/format/elf/elf.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-02-11 17:05:54 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-02-11 17:05:54 (GMT)
commitbf879f2562545ab7de23f9d38364b7bd4b43fb2c (patch)
tree6154160307cbca304ea9e1de178d8c2dfc8e0928 /plugins/pychrysa/format/elf/elf.c
parentabd96dbbe27246e9303173e5e2f47b2e4cedbcb7 (diff)
Registered all the supported formats in the system code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@471 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
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));