summaryrefslogtreecommitdiff
path: root/gi/gimodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'gi/gimodule.c')
-rw-r--r--gi/gimodule.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gi/gimodule.c b/gi/gimodule.c
index b7ef6beb..7b23012e 100644
--- a/gi/gimodule.c
+++ b/gi/gimodule.c
@@ -1066,11 +1066,15 @@ static void
pygobject__g_instance_init(GTypeInstance *instance,
gpointer g_class)
{
- GObject *object = (GObject *) instance;
+ GObject *object;
PyObject *wrapper, *result;
PyGILState_STATE state;
gboolean needs_init = FALSE;
+ g_return_if_fail(G_IS_OBJECT(instance));
+
+ object = (GObject *) instance;
+
wrapper = g_object_get_qdata(object, pygobject_wrapper_key);
if (wrapper == NULL) {
wrapper = pygobject_init_wrapper_get();