diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-11-04 22:02:31 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-11-04 22:02:31 (GMT) |
commit | 4bafbf79e8143941d744c9c47e6fc9216fcec47a (patch) | |
tree | e0dc679daaa255d289c84ab0630e42256ab7a58c /plugins/pychrysa/format | |
parent | 72da49fdf05285169a9465b34f7869dafc4715ec (diff) |
Fixed some bugs and defined some first test cases.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@604 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins/pychrysa/format')
-rw-r--r-- | plugins/pychrysa/format/elf/elf.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/pychrysa/format/elf/elf.c b/plugins/pychrysa/format/elf/elf.c index 07e5130..72a9647 100644 --- a/plugins/pychrysa/format/elf/elf.c +++ b/plugins/pychrysa/format/elf/elf.c @@ -28,6 +28,9 @@ #include <pygobject.h> +#include <i18n.h> + + #include <format/elf/elf.h> @@ -67,7 +70,11 @@ static PyObject *py_elf_format_new(PyTypeObject *type, PyObject *args, PyObject if (!ret) return NULL; ret = PyObject_IsInstance(content_obj, (PyObject *)get_python_binary_content_type()); - if (!ret) return NULL; + if (!ret) + { + PyErr_SetString(PyExc_TypeError, _("The argument must be an instance of BinContent.")); + return NULL; + } content = G_BIN_CONTENT(pygobject_get(content_obj)); format = g_elf_format_new(content, NULL); |