Failed to get CAT content

This commit is contained in:
olszomal 2024-05-31 12:24:25 +02:00 committed by Michał Trojnara
parent 41b662a8fe
commit 9b1a6c9fb8

7
cat.c
View File

@ -166,10 +166,15 @@ static PKCS7 *cat_pkcs7_signature_new(FILE_FORMAT_CTX *ctx, BIO *hash)
PKCS7_free(p7); PKCS7_free(p7);
return NULL; /* FAILED */ return NULL; /* FAILED */
} }
if (!ctx->cat_ctx->p7 || !ctx->cat_ctx->p7->d.sign || !ctx->cat_ctx->p7->d.sign->contents) {
printf("Failed to get content\n");
PKCS7_free(p7);
return NULL; /* FAILED */
}
if (!cat_sign_ms_ctl_content(p7, ctx->cat_ctx->p7->d.sign->contents)) { if (!cat_sign_ms_ctl_content(p7, ctx->cat_ctx->p7->d.sign->contents)) {
printf("Failed to set signed content\n"); printf("Failed to set signed content\n");
PKCS7_free(p7); PKCS7_free(p7);
return 0; /* FAILED */ return NULL; /* FAILED */
} }
return p7; /* OK */ return p7; /* OK */
} }