Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8647769f authored by Dan Albert's avatar Dan Albert Committed by Android Git Automerger
Browse files

am 641ced11: am ffbb05e6: am fbe58079: Merge "Fix warning for uninitialized variable."

* commit '641ced11':
  Fix warning for uninitialized variable.
parents c2ef9f14 641ced11
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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)) {