mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
tree-wide: use IOVEC_MAKE() in a couple more places
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user