summaryrefslogtreecommitdiffstats
path: root/fastbootd/commands/partitions.c
diff options
context:
space:
mode:
Diffstat (limited to 'fastbootd/commands/partitions.c')
-rw-r--r--fastbootd/commands/partitions.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fastbootd/commands/partitions.c b/fastbootd/commands/partitions.c
index 74232e6..f2c9da7 100644
--- a/fastbootd/commands/partitions.c
+++ b/fastbootd/commands/partitions.c
@@ -547,7 +547,8 @@ error:
int GPT_parse_entry(char *string, struct GPT_entry_raw *entry)
{
char *ptr = string;
- char *key, *value;
+ char *key = NULL;
+ char *value = NULL;
while ((ptr = get_key_value(ptr, &key, &value)) != NULL) {
if (add_key_value(key, value, entry)) {