[pygobject/invoke-rewrite] [gi-invoke-ng] return None when appropriate so we don't crash
- From: John Palmieri <johnp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pygobject/invoke-rewrite] [gi-invoke-ng] return None when appropriate so we don't crash
- Date: Tue, 29 Mar 2011 19:33:02 +0000 (UTC)
commit a456fc0adc1f8a0754bf59cde8924f905bfc7dc1
Author: John (J5) Palmieri <johnp redhat com>
Date: Tue Mar 29 15:23:06 2011 -0400
[gi-invoke-ng] return None when appropriate so we don't crash
gi/pygi-marshal.c | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
---
diff --git a/gi/pygi-marshal.c b/gi/pygi-marshal.c
index e89e7c4..2909211 100644
--- a/gi/pygi-marshal.c
+++ b/gi/pygi-marshal.c
@@ -1355,6 +1355,8 @@ gboolean _pygi_marshal_in_interface_instance (PyGIInvokeState *state,
/* Other types don't have methods. */
g_assert_not_reached();
}
+
+ return TRUE;
}
PyObject *
@@ -1956,6 +1958,12 @@ _pygi_marshal_out_interface_struct (PyGIInvokeState *state,
PyGIInterfaceCache *iface_cache = (PyGIInterfaceCache *)arg_cache;
GType type = iface_cache->g_type;
+ if (arg->v_pointer == NULL) {
+ py_obj = Py_None;
+ Py_INCREF (py_obj);
+ return py_obj;
+ }
+
if (g_type_is_a (type, G_TYPE_VALUE)) {
py_obj = pyg_value_as_pyobject (arg->v_pointer, FALSE);
} else if (iface_cache->is_foreign) {
@@ -2017,7 +2025,15 @@ _pygi_marshal_out_interface_object (PyGIInvokeState *state,
PyGIArgCache *arg_cache,
GIArgument *arg)
{
- PyObject *py_obj = pygobject_new (arg->v_pointer);
+ PyObject *py_obj;
+
+ if (arg->v_pointer == NULL) {
+ py_obj = Py_None;
+ Py_INCREF (py_obj);
+ return py_obj;
+ }
+
+ py_obj = pygobject_new (arg->v_pointer);
if (arg_cache->transfer == GI_TRANSFER_EVERYTHING)
g_object_unref (arg->v_pointer);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]