synaptics: Fix warning about missing initialization
The compiler seems to (incorrectly) think that cleanup might happen before the variable has been initialized.
This commit is contained in:
parent
ec9e6f1947
commit
d957bbd0f4
1 changed files with 1 additions and 1 deletions
|
@ -461,7 +461,7 @@ create_print (FpiDeviceSynaptics *self,
|
||||||
guint8 finger_id)
|
guint8 finger_id)
|
||||||
{
|
{
|
||||||
FpPrint *print;
|
FpPrint *print;
|
||||||
g_autofree gchar *user_id_safe;
|
g_autofree gchar *user_id_safe = NULL;
|
||||||
GVariant *data = NULL;
|
GVariant *data = NULL;
|
||||||
GVariant *uid = NULL;
|
GVariant *uid = NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue