diff options
author | Kylene Jo Hall <kjhall@us.ibm.com> | 2006-04-22 02:36:46 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-22 09:19:53 -0700 |
commit | 7c69a47f1badf40dfa2febac71df98d32b1b56d7 (patch) | |
tree | 7f37cf8d9120234c00e8dfaea54b5df064c9e1d0 /drivers/char | |
parent | 59e89f3a091d5cf93f4b176aedcfded61ece5252 (diff) | |
download | linux-3.10-7c69a47f1badf40dfa2febac71df98d32b1b56d7.tar.gz linux-3.10-7c69a47f1badf40dfa2febac71df98d32b1b56d7.tar.bz2 linux-3.10-7c69a47f1badf40dfa2febac71df98d32b1b56d7.zip |
[PATCH] tpm: fix missing string
A string corresponding to the tcpa_pc_event_id POST_CONTENTS was missing
causing an overflow bug when access was attempted in the get_event_name
function.
This bug was found by Coverity.
Signed-off-by: Kylene Hall <kjhall@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tpm/tpm_bios.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/tpm/tpm_bios.c b/drivers/char/tpm/tpm_bios.c index 0549e2a35df..5bcbaef5379 100644 --- a/drivers/char/tpm/tpm_bios.c +++ b/drivers/char/tpm/tpm_bios.c @@ -120,6 +120,7 @@ static const char* tcpa_pc_event_id_strings[] = { "S-CRTM Version", "S-CRTM Contents", "S-CRTM POST Contents", + "POST Contents", }; /* returns pointer to start of pos. entry of tcg log */ |