forked from pool/tpm2.0-tools
Matthias Gerstner
756009e46c
- changes in version 4.3: - tss2_*: Fix double-free errors in commands asking for password authorization - tss2_*: Fix shorthand command -f that was falsely requiring an argument - tss2_*: Update tss2_encrypt to the new FAPI interface - The argument 'policyPath' is removed which was never read anyway - tss2_*: Remove the additional '\n' that was appended when redirecting to stdout - tss2_*: Update mandatory vs optional treatment of arguments according to latest Fapi spec - tss2_*: tss2_getinfo now retrieves the correct FAPI version from Fapi_GetInfo - tss2_*: Fix the error handling in case of multiple inputs and/or outputs from stdin/stdout - tss2_*: Fix syntax errors and update content of man pages according to latest Fapi spec - tss2_*: Add parameter types to all man page - tss2_*: tss2_setappdata now reads from file or stdin allowing to store also binary data - tss2_*: Memory leaks are fixed in cases when a returned empty non-char output value was passed to file output - tss2_pcrextend: fix extending PCR 0 - tss2_quote: fix unused TSS2_RC in LOG_ERR - changes in 4.2.1: - Fix missing handle maps for ESY3 handle breaks. See #1994. - Bump ESYS minimum dependency version from 2.3.0 to 2.4.0. - Fix for loop declarations build error. - changes in 4.2: - Fix various issues reported by static analysis tools. - Add integration test for ECC based getekcertificate. - Fix for issue #1959 where ARM builds were failing. - Add a check in autotools to add "expect" as a package dependency for fapi tools. - tpm2_createek: Drop the unused -p or --ek-auth option - tpm2_policyor: List of policy files should be specified as an argument - instead of -l option. The -l option is still retained for backwards - compatibility. See issue#1894. - tpm2_eventlog: add a tool for parsing and displaying the event log. OBS-URL: https://build.opensuse.org/package/show/security/tpm2.0-tools?expand=0&rev=58
14 lines
485 B
Diff
14 lines
485 B
Diff
Index: tpm2-tools-4.1/lib/tpm2_attr_util.c
|
|
===================================================================
|
|
--- tpm2-tools-4.1.orig/lib/tpm2_attr_util.c
|
|
+++ tpm2-tools-4.1/lib/tpm2_attr_util.c
|
|
@@ -202,7 +202,7 @@ static bool lookup_nt_friendly_name(cons
|
|
|
|
static bool nt(TPMA_NV *nv, char *arg) {
|
|
|
|
- uint16_t value;
|
|
+ uint16_t value = 0;
|
|
bool result = tpm2_util_string_to_uint16(arg, &value);
|
|
if (!result) {
|
|
result = lookup_nt_friendly_name(arg, &value);
|