From 98f02ef5ebf6966af4937dd2f730d808f13d8a1c Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Thu, 16 Feb 2017 15:54:41 +0100 Subject: [PATCH] trust: Fix uninitialized value in anchor command --- trust/anchor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trust/anchor.c b/trust/anchor.c index 03cf9e8..a232ead 100644 --- a/trust/anchor.c +++ b/trust/anchor.c @@ -612,7 +612,7 @@ p11_trust_anchor (int argc, bool changed = false; int action = 0; int opt; - int ret; + int ret = 0; enum { opt_verbose = 'v', -- 2.40.0