diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-03-03 05:07:10 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-03-04 23:10:13 +0100 |
commit | f5fbe71d956957ca7ceb6777aed05a416fc83a43 (patch) | |
tree | 67358d417604030867a979f216bbb79939a37844 /src/cryptenroll | |
parent | table: drop last SIZE_MAX from table_set_sort() and table_set_display() (diff) | |
download | systemd-f5fbe71d956957ca7ceb6777aed05a416fc83a43.tar.xz systemd-f5fbe71d956957ca7ceb6777aed05a416fc83a43.zip |
tree-wide: use UINT64_MAX or friends
Diffstat (limited to 'src/cryptenroll')
-rw-r--r-- | src/cryptenroll/cryptenroll-tpm2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptenroll/cryptenroll-tpm2.c b/src/cryptenroll/cryptenroll-tpm2.c index b58f3a2e7f..9c1478c474 100644 --- a/src/cryptenroll/cryptenroll-tpm2.c +++ b/src/cryptenroll/cryptenroll-tpm2.c @@ -42,7 +42,7 @@ static int search_policy_hash( return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "TPM2 token data lacks 'tpm2-policy-hash' field."); - r = unhexmem(json_variant_string(w), (size_t) -1, &thash, &thash_size); + r = unhexmem(json_variant_string(w), SIZE_MAX, &thash, &thash_size); if (r < 0) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Invalid base64 data in 'tpm2-policy-hash' field."); |