Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@litl.com>2009-02-19 23:25:04 (GMT)
committer Johan Dahlin <johan@gnome.org>2009-02-19 23:25:04 (GMT)
commitb02efbc94a1a6febddf62d1e742abd1f82e9ecf3 (patch)
tree8d84590b42a91fe9d78b697bcf2445b18d113650
parentcbd0fbb19f3fc7d490e9f8299cce2cb5bc55dcea (diff)
Improve type checking
-rw-r--r--giscanner/giscannermodule.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/giscanner/giscannermodule.c b/giscanner/giscannermodule.c
index 26f28cb..3223508 100644
--- a/giscanner/giscannermodule.c
+++ b/giscanner/giscannermodule.c
@@ -567,6 +567,8 @@ pygi_collect_attributes (PyObject *self,
first = TRUE;
attr_value = g_string_new ("");
+ g_assert(PyList_Check(attributes));
+
for (i = 0; i < PyList_Size (attributes); ++i)
{
PyObject *tuple;
@@ -574,6 +576,7 @@ pygi_collect_attributes (PyObject *self,
tuple = PyList_GetItem (attributes, i);
g_assert(tuple != NULL);
+ g_assert(PyTuple_Check(tuple));
g_assert(PyTuple_Size(tuple) == 2);
if (PyTuple_GetItem(tuple, 1) == Py_None)
continue;