mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 23:46:17 +01:00
Initialise argument
Avoid a "maybe uninitialized" compiler warning.
This commit is contained in:
parent
18745a0639
commit
0cdd325c1a
@ -251,7 +251,7 @@ gi_cclosure_marshal_generic (GClosure *closure,
|
|||||||
gpointer invocation_hint,
|
gpointer invocation_hint,
|
||||||
gpointer marshal_data)
|
gpointer marshal_data)
|
||||||
{
|
{
|
||||||
GIArgument return_ffi_value;
|
GIArgument return_ffi_value = { 0, };
|
||||||
ffi_type *rtype;
|
ffi_type *rtype;
|
||||||
void *rvalue;
|
void *rvalue;
|
||||||
int n_args;
|
int n_args;
|
||||||
|
Loading…
Reference in New Issue
Block a user