summaryrefslogtreecommitdiffstats
path: root/gi/pygi-struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'gi/pygi-struct.c')
-rw-r--r--gi/pygi-struct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/pygi-struct.c b/gi/pygi-struct.c
index 8b672c7..b1e81bf 100644
--- a/gi/pygi-struct.c
+++ b/gi/pygi-struct.c
@@ -72,7 +72,7 @@ _struct_new (PyTypeObject *type,
}
size = g_struct_info_get_size((GIStructInfo *)info);
- pointer = g_try_malloc(size);
+ pointer = g_try_malloc0(size);
if (pointer == NULL) {
PyErr_NoMemory();
goto out;