27 lines
862 B
Diff
27 lines
862 B
Diff
From 76dd4066f328ed76794e834b797abcd588650736 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= <mail@3v1n0.net>
|
|
Date: Fri, 22 Nov 2019 17:31:50 +0100
|
|
Subject: [PATCH 010/181] verify: Ensure we set set the autoptr value to NULL
|
|
at definition
|
|
|
|
---
|
|
examples/verify.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/examples/verify.c b/examples/verify.c
|
|
index 89a9b2c..4e1c988 100644
|
|
--- a/examples/verify.c
|
|
+++ b/examples/verify.c
|
|
@@ -182,7 +182,7 @@ start_verification (FpDevice *dev, VerifyData *verify_data)
|
|
{
|
|
g_print ("Loading previously enrolled %s finger data...\n",
|
|
finger_to_string (verify_data->finger));
|
|
- g_autoptr(FpPrint) verify_print;
|
|
+ g_autoptr(FpPrint) verify_print = NULL;
|
|
|
|
verify_print = print_data_load (dev, verify_data->finger);
|
|
|
|
--
|
|
2.24.1
|
|
|