mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-08 20:03:34 +02:00
tests: Fix uninitialised variable use
The GError was used without being initialised. https://bugs.freedesktop.org/show_bug.cgi?id=53900
This commit is contained in:
committed by
Bastien Nocera
parent
1bd948ac16
commit
b80f7359c3
@ -120,7 +120,7 @@ static void verify_finger_selected(GObject *object, const char *name, void *user
|
||||
|
||||
static void do_verify(DBusGProxy *dev)
|
||||
{
|
||||
GError *error;
|
||||
GError *error = NULL;
|
||||
gboolean verify_completed = FALSE;
|
||||
|
||||
dbus_g_proxy_add_signal(dev, "VerifyStatus", G_TYPE_STRING, G_TYPE_BOOLEAN, NULL);
|
||||
|
||||
Reference in New Issue
Block a user