Skip to content
Snippets Groups Projects
Commit 403fddcd authored by Eric Koegel's avatar Eric Koegel
Browse files

Fix coverity cid 107695 Uninitialized scalar variable

parent 76c7a019
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ xfpm_dbus_name_has_owner (GDBusConnection *connection, const gchar *name)
gboolean xfpm_dbus_register_name(GDBusConnection *connection, const gchar *name)
{
GError *error = NULL;
guint32 ret;
guint32 ret = 0;
GVariant *var;
var = g_dbus_connection_call_sync (connection,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment