From db0f835829b739cf843d44b08c22407194aadd71 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Oct 04 2018 12:40:52 +0000 Subject: clang: Uninitialized initial value --- diff --git a/src/submit-n.c b/src/submit-n.c index ee6f310..b07ea23 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;