diff options
-rw-r--r-- | common/cmd_tpm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/cmd_tpm.c b/common/cmd_tpm.c index 65e7371e80..e9c661821c 100644 --- a/common/cmd_tpm.c +++ b/common/cmd_tpm.c @@ -58,6 +58,8 @@ static void *parse_byte_string(char *bytes, uint8_t *data, size_t *count_ptr) size_t count, length; int i; + if (!bytes) + return NULL; length = strlen(bytes); count = length / 2; |