We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e350064 commit 72a261cCopy full SHA for 72a261c
1 file changed
src/x509.c
@@ -11714,11 +11714,14 @@ WOLF_STACK_OF(WOLFSSL_X509_OBJECT)* wolfSSL_sk_X509_OBJECT_deep_copy(
11714
if (req->subjKeyIdSz > CTC_MAX_SKID_SIZE) {
11715
WOLFSSL_MSG("Subject Key ID too large");
11716
WOLFSSL_ERROR_VERBOSE(BUFFER_E);
11717
+ cert->skidSz = 0;
11718
ret = WOLFSSL_FAILURE;
11719
}
11720
else if (req->subjKeyIdSz > 0) {
11721
if (req->subjKeyId == NULL) {
11722
WOLFSSL_MSG("Subject Key ID missing");
11723
+ WOLFSSL_ERROR_VERBOSE(BAD_FUNC_ARG);
11724
11725
11726
11727
else {
0 commit comments