mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-21 08:28:53 +02:00
Initialise argument
Avoid a "maybe uninitialized" compiler warning.
This commit is contained in:
committed by
Emmanuele Bassi
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;
|
||||||
|
Reference in New Issue
Block a user