summaryrefslogtreecommitdiff
path: root/girepository/gicallableinfo.c
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2017-10-03 14:29:00 +0800
committerMathieu Duponchelle <mathieu@centricular.com>2018-04-20 18:26:08 +0200
commitc8525c461fa7f5f68ccfd9c332e6a6bbdd9090d3 (patch)
tree1ffaf5e88a04110367f4953183328f73612f5d8b /girepository/gicallableinfo.c
parentb010c1241227201581841122912f307d2311455a (diff)
downloadgobject-introspection-c8525c461fa7f5f68ccfd9c332e6a6bbdd9090d3.tar.gz
girepository: Properly acquire and check pointer values
On Windows (Visual Studio at least), unsigned longs are always 4 bytes, on both 32-bit and x64 Windows, so we cannot use unsigned longs to deal with pointers on 64-bit builds, as pointers are 8 bytes on 64-bit Windows, which may well render the pointer (which we acquired from libffi) invalid. This will fix crashes in PyGObject which are manifested when launching the cairo-demo example sript (intermittent) and when clicking on "Interactive Dialog" button in the Dialog demo in the PyGObject GTK+ Code demos before entering anything in Entry 1 and Entry 2, when running on x64 Visual Studio builds of the GTK+/PyGObject stack. Also use size_t instead of unsigned long in gthash.c when we check that memory & 0x3 is 0, to silence compiler warnings from enabling /Wp64, which is used to detect portability problems on Visual Studio when doing x86->x64 code builds. https://bugzilla.gnome.org/show_bug.cgi?id=702788
Diffstat (limited to 'girepository/gicallableinfo.c')
-rw-r--r--girepository/gicallableinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/girepository/gicallableinfo.c b/girepository/gicallableinfo.c
index bfbcc255..5f923d1a 100644
--- a/girepository/gicallableinfo.c
+++ b/girepository/gicallableinfo.c
@@ -535,7 +535,7 @@ gi_type_info_extract_ffi_return_value (GITypeInfo *return_info,
arg->v_int32 = (gint32) ffi_value->v_long;
break;
default:
- arg->v_pointer = (gpointer) ffi_value->v_ulong;
+ arg->v_pointer = (gpointer) ffi_value->v_pointer;
break;
}
@@ -543,7 +543,7 @@ gi_type_info_extract_ffi_return_value (GITypeInfo *return_info,
}
break;
default:
- arg->v_pointer = (gpointer) ffi_value->v_ulong;
+ arg->v_pointer = (gpointer) ffi_value->v_pointer;
break;
}
}