From dbe7751a2252ffdaf74521585c8533bf7eba8bfa Mon Sep 17 00:00:00 2001 From: Sansar Choinyambuu Date: Mon, 24 Oct 2011 14:11:11 +0200 Subject: [PATCH] Copy just 20 bytes of pcr after value --- src/libimcv/plugins/imv_attestation/imv_attestation_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libimcv/plugins/imv_attestation/imv_attestation_process.c b/src/libimcv/plugins/imv_attestation/imv_attestation_process.c index a097aba..569033a 100644 --- a/src/libimcv/plugins/imv_attestation/imv_attestation_process.c +++ b/src/libimcv/plugins/imv_attestation/imv_attestation_process.c @@ -264,7 +264,7 @@ bool imv_attestation_process(pa_tnc_attr_t *attr, linked_list_t *attr_list, entry = malloc_thing(pcr_entry_t); entry->pcr_number = extended_pcr; - strcpy(entry->pcr_value, pcr_after.ptr); + strncpy(entry->pcr_value, pcr_after.ptr, PCR_LEN); pts->add_pcr_entry(pts, entry); } -- 2.7.4