Skip to content

Commit

Permalink
Coverity 1463571: Null pointer dereferences (FORWARD_NULL)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulidale committed May 21, 2020
1 parent 2ddd385 commit f7c4b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/implementations/keymgmt/rsa_kmgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ static void *gen_init(void *provctx, int selection, int rsa_type)
} else {
gctx->nbits = 2048;
gctx->primes = RSA_DEFAULT_PRIME_NUM;
gctx->rsa_type = rsa_type;
}
gctx->rsa_type = rsa_type;
}
return gctx;
}
Expand Down

0 comments on commit f7c4b9a

Please sign in to comment.