mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +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 *encoded;
|
||||||
gchar *decoded_data;
|
gchar *decoded_data;
|
||||||
gsize decoded_data_len;
|
gsize decoded_data_len = 0;
|
||||||
|
|
||||||
encoded = g_strdup (line + 5);
|
encoded = g_strdup (line + 5);
|
||||||
g_free (line);
|
g_free (line);
|
||||||
@ -1230,7 +1230,7 @@ _g_dbus_auth_run_server (GDBusAuth *auth,
|
|||||||
{
|
{
|
||||||
gchar *encoded;
|
gchar *encoded;
|
||||||
gchar *decoded_data;
|
gchar *decoded_data;
|
||||||
gsize decoded_data_len;
|
gsize decoded_data_len = 0;
|
||||||
|
|
||||||
encoded = g_strdup (line + 5);
|
encoded = g_strdup (line + 5);
|
||||||
g_free (line);
|
g_free (line);
|
||||||
|
Loading…
Reference in New Issue
Block a user