diff --git a/fix_bogus_warning.patch b/fix_bogus_warning.patch index 114f39e..8945cd5 100644 --- a/fix_bogus_warning.patch +++ b/fix_bogus_warning.patch @@ -24,29 +24,3 @@ Index: tpm2-tools-4.1/lib/tpm2_attr_util.c bool result = tpm2_util_string_to_uint16(arg, &value); if (!result) { result = lookup_nt_friendly_name(arg, &value); -Index: tpm2-tools-4.1/tools/tpm2_policytemplate.c -=================================================================== ---- tpm2-tools-4.1.orig/tools/tpm2_policytemplate.c -+++ tpm2-tools-4.1/tools/tpm2_policytemplate.c -@@ -23,7 +23,7 @@ static tpm2_policytemplate_ctx ctx; - - static bool process_input_template_hash(char *value) { - -- ctx.template_hash.size = UINT16_MAX; -+ ctx.template_hash.size = sizeof(ctx.template_hash.buffer); - bool result = files_load_bytes_from_buffer_or_file_or_stdin(NULL, value, - &ctx.template_hash.size, ctx.template_hash.buffer); - if (!result) { -Index: tpm2-tools-4.1/tools/tpm2_policynamehash.c -=================================================================== ---- tpm2-tools-4.1.orig/tools/tpm2_policynamehash.c -+++ tpm2-tools-4.1/tools/tpm2_policynamehash.c -@@ -23,7 +23,7 @@ static tpm2_policynamehash_ctx ctx; - - static bool process_input_name_hash(char *value) { - -- ctx.name_hash.size = UINT16_MAX; -+ ctx.name_hash.size = sizeof(ctx.name_hash.buffer); - bool result = files_load_bytes_from_buffer_or_file_or_stdin(NULL, value, - &ctx.name_hash.size, ctx.name_hash.buffer); - if (!result) {