mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Fixed to get CAT content value
This commit is contained in:
parent
2c27e2e37d
commit
be4f010535
5
cat.c
5
cat.c
@ -285,6 +285,11 @@ static int cat_sign_ms_ctl_content(PKCS7 *p7, PKCS7 *contents)
|
|||||||
u_char *content;
|
u_char *content;
|
||||||
int seqhdrlen, content_length;
|
int seqhdrlen, content_length;
|
||||||
|
|
||||||
|
if (!contents->d.other || !contents->d.other->value.sequence
|
||||||
|
|| !contents->d.other->value.sequence->data) {
|
||||||
|
printf("Failed to get content value\n");
|
||||||
|
return 0; /* FAILED */
|
||||||
|
}
|
||||||
seqhdrlen = asn1_simple_hdr_len(contents->d.other->value.sequence->data,
|
seqhdrlen = asn1_simple_hdr_len(contents->d.other->value.sequence->data,
|
||||||
contents->d.other->value.sequence->length);
|
contents->d.other->value.sequence->length);
|
||||||
content = contents->d.other->value.sequence->data + seqhdrlen;
|
content = contents->d.other->value.sequence->data + seqhdrlen;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user