From db0f835829b739cf843d44b08c22407194aadd71 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 13 Sep 2018 17:57:21 -0400 Subject: [PATCH 13/17] clang: Uninitialized initial value --- src/submit-n.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/submit-n.c b/src/submit-n.c index ee6f3105..b07ea23a 100644 --- a/src/submit-n.c +++ b/src/submit-n.c @@ -281,7 +281,7 @@ cm_submit_n_decrypt_envelope(const unsigned char *envelope, PLArenaPool *arena = NULL; SECStatus error; NSSInitContext *ctx = NULL; - PK11SlotInfo *slot; + PK11SlotInfo *slot = NULL; PK11SlotList *slotlist = NULL; PK11SlotListElement *sle; SECKEYPrivateKeyList *keylist = NULL; -- 2.14.4