mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-05-09 09:28:06 +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:
parent
1bd948ac16
commit
b80f7359c3
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue