Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1561588 - Remove -Wmaybe-uninitialized warning in p7env.c r=marcu…
…sburghardt,jcj

--HG--
extra : amend_source : 6acce3136f3b96899e8daca8df50d418d4ea0e02
  • Loading branch information
giuliobenetti committed Jul 19, 2019
1 parent 158e949 commit e2e8b06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/p7env/p7env.c
Expand Up @@ -66,7 +66,7 @@ EncryptFile(FILE *outFile, FILE *inFile, struct recipient *recipients,
SEC_PKCS7ContentInfo *cinfo;
SEC_PKCS7EncoderContext *ecx;
struct recipient *rcpt;
SECStatus rv;
SECStatus rv = SECFailure;

if (outFile == NULL || inFile == NULL || recipients == NULL)
return -1;
Expand Down Expand Up @@ -133,7 +133,7 @@ main(int argc, char **argv)
struct recipient *recipients, *rcpt;
PLOptState *optstate;
PLOptStatus status;
SECStatus rv;
SECStatus rv = SECFailure;

progName = strrchr(argv[0], '/');
progName = progName ? progName + 1 : argv[0];
Expand Down

0 comments on commit e2e8b06

Please sign in to comment.