mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 13:06:14 +01:00
Initialise lengths in GDbusAuth to silence warnings
This commit is contained in:
parent
53f398f52a
commit
ad363d9aac
@ -805,7 +805,7 @@ _g_dbus_auth_run_client (GDBusAuth *auth,
|
||||
{
|
||||
gchar *encoded;
|
||||
gchar *decoded_data;
|
||||
gsize decoded_data_len;
|
||||
gsize decoded_data_len = 0;
|
||||
|
||||
encoded = g_strdup (line + 5);
|
||||
g_free (line);
|
||||
@ -1230,7 +1230,7 @@ _g_dbus_auth_run_server (GDBusAuth *auth,
|
||||
{
|
||||
gchar *encoded;
|
||||
gchar *decoded_data;
|
||||
gsize decoded_data_len;
|
||||
gsize decoded_data_len = 0;
|
||||
|
||||
encoded = g_strdup (line + 5);
|
||||
g_free (line);
|
||||
|
Loading…
Reference in New Issue
Block a user