mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
increase the maximum size of supported CAT files
This commit is contained in:
parent
fb1bc06440
commit
5e064233a3
@ -4800,7 +4800,9 @@ static int get_file_type(char *indata, char *infile, file_type_t *type)
|
|||||||
gsf_init();
|
gsf_init();
|
||||||
gsf_initialized = 1;
|
gsf_initialized = 1;
|
||||||
#endif
|
#endif
|
||||||
} else if (!memcmp(indata+4, pkcs7_signed_data, sizeof(pkcs7_signed_data))) {
|
} else if (!memcmp(indata + ((GET_UINT8_LE(indata+1) == 0x82) ? 4 : 5),
|
||||||
|
pkcs7_signed_data, sizeof(pkcs7_signed_data))) {
|
||||||
|
/* the maximum size of a supported cat file is (2^24 -1) bytes */
|
||||||
*type = FILE_TYPE_CAT;
|
*type = FILE_TYPE_CAT;
|
||||||
} else {
|
} else {
|
||||||
printf("Unrecognized file type: %s\n", infile);
|
printf("Unrecognized file type: %s\n", infile);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user