Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/wp_dh_exch.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ static void wp_dh_freectx(wp_DhCtx* ctx)
if (ctx != NULL) {
wp_dh_free(ctx->peer);
wp_dh_free(ctx->key);
OPENSSL_free(ctx->ukm);
OPENSSL_free(ctx);
}
}
Expand Down
1 change: 1 addition & 0 deletions src/wp_ecdh_exch.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ static void wp_ecdh_free(wp_EcdhCtx* ctx)
if (ctx != NULL) {
wp_ecc_free(ctx->peer);
wp_ecc_free(ctx->key);
OPENSSL_free(ctx->ukm);
OPENSSL_free(ctx);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/wp_rsa_kmgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ static int wp_rsa_pss_params_set_params(wp_RsaPssParams* pss,

WOLFPROV_ENTER(WP_LOG_COMP_RSA, "wp_rsa_pss_params_set_params");

if (!defaultsSet) {
if (!*defaultsSet) {
if (!wp_rsa_pss_params_set_pss_defaults(pss)) {
ok = 0;
}
Expand Down
Loading