mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Skip a null stream warning
This commit is contained in:
parent
867e0d446d
commit
46bcaa9d88
3
msi.c
3
msi.c
@ -1693,9 +1693,8 @@ static int stream_handle(MSI_FILE *msi, MSI_DIRENT *dirent, u_char *p_msi, uint3
|
||||
/* DigitalSignature or MsiDigitalSignatureEx: inlen == 0 */
|
||||
inlen = stream_read(msi, child->entry, p_msi, len_msi, p_msiex, len_msiex, &indata, inlen, is_root);
|
||||
if (inlen == 0) {
|
||||
printf("Failed to read stream data\n");
|
||||
OPENSSL_free(indata);
|
||||
continue;
|
||||
continue; /* skip a null stream */
|
||||
}
|
||||
/* set the size of the user-defined data if this is a stream object */
|
||||
PUT_UINT32_LE(inlen, buf);
|
||||
|
Loading…
x
Reference in New Issue
Block a user