Initialise argument

Avoid a "maybe uninitialized" compiler warning.
This commit is contained in:
Emmanuele Bassi 2021-06-02 12:39:00 +01:00 committed by Emmanuele Bassi
parent 18745a0639
commit 0cdd325c1a

View File

@ -251,7 +251,7 @@ gi_cclosure_marshal_generic (GClosure *closure,
gpointer invocation_hint,
gpointer marshal_data)
{
GIArgument return_ffi_value;
GIArgument return_ffi_value = { 0, };
ffi_type *rtype;
void *rvalue;
int n_args;