Skip to content
Draft
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
3 changes: 3 additions & 0 deletions src/ecparam/clu_ecparam.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,9 @@ int wolfCLU_ecparam(int argc, char** argv)
if (der != NULL) {
/* der was created by wolfSSL library so we assume
* that XMALLOC was used and call XFREE here */
if (derSz > 0) {
wolfCLU_ForceZero(der, derSz);
}
Comment on lines +283 to +285
XFREE(der, NULL, DYNAMIC_TYPE_TMP_BUFFER);
}
}
Expand Down
Loading