tree-wide: use IOVEC_MAKE() in a couple more places

This commit is contained in:
Frantisek Sumsal 2023-12-25 12:54:35 +01:00
parent dd1b1dae7e
commit c490b6ddc2
2 changed files with 2 additions and 6 deletions

View file

@ -4172,8 +4172,7 @@ static int sign_verity_roothash(
return log_error_errno(SYNTHETIC_ERRNO(EIO), "Failed to convert PKCS7 signature to DER: %s",
ERR_error_string(ERR_get_error(), NULL));
ret_signature->iov_base = TAKE_PTR(sig);
ret_signature->iov_len = sigsz;
*ret_signature = IOVEC_MAKE(TAKE_PTR(sig), sigsz);
return 0;
#else

View file

@ -5891,10 +5891,7 @@ int tpm2_unseal_data(
"Failed to unseal data: %s", sym_Tss2_RC_Decode(rc));
_cleanup_(iovec_done) struct iovec d = {};
d = (struct iovec) {
.iov_base = memdup(unsealed->buffer, unsealed->size),
.iov_len = unsealed->size,
};
d = IOVEC_MAKE(memdup(unsealed->buffer, unsealed->size), unsealed->size);
explicit_bzero_safe(unsealed->buffer, unsealed->size);