cpufreq: interactive: fix crash on error paths in get_tokenized_data
authorTodd Poynor <toddpoynor@google.com>
Wed, 20 Mar 2013 22:40:46 +0000 (15:40 -0700)
committerArve Hjønnevåg <arve@android.com>
Mon, 1 Jul 2013 21:16:23 +0000 (14:16 -0700)
Use separate variable for error code, free proper pointer.

Change-Id: Ia83cccb195997789ac6afbf5b8761f7b278196d6
Reported-by: Arve Hjønnevåg <arve@android.com>
Signed-off-by: Todd Poynor <toddpoynor@google.com>
drivers/cpufreq/cpufreq_interactive.c

index 7c734fa57e245fa37b1790bd90f92b36de4a93a5..3dc067e6eb45b758e8f9d5bcbb3ef469afdf61ee 100644 (file)
@@ -647,29 +647,26 @@ static unsigned int *get_tokenized_data(const char *buf, int *num_tokens)
        int i;
        int ntokens = 1;
        unsigned int *tokenized_data;
+       int err = -EINVAL;
 
        cp = buf;
        while ((cp = strpbrk(cp + 1, " :")))
                ntokens++;
 
-       if (!(ntokens & 0x1)) {
-               tokenized_data = ERR_PTR(-EINVAL);
+       if (!(ntokens & 0x1))
                goto err;
-       }
 
        tokenized_data = kmalloc(ntokens * sizeof(unsigned int), GFP_KERNEL);
        if (!tokenized_data) {
-               tokenized_data = ERR_PTR(-ENOMEM);
+               err = -ENOMEM;
                goto err;
        }
 
        cp = buf;
        i = 0;
        while (i < ntokens) {
-               if (sscanf(cp, "%u", &tokenized_data[i++]) != 1) {
-                       tokenized_data = ERR_PTR(-EINVAL);
+               if (sscanf(cp, "%u", &tokenized_data[i++]) != 1)
                        goto err_kfree;
-               }
 
                cp = strpbrk(cp, " :");
                if (!cp)
@@ -677,10 +674,8 @@ static unsigned int *get_tokenized_data(const char *buf, int *num_tokens)
                cp++;
        }
 
-       if (i != ntokens) {
-               tokenized_data = ERR_PTR(-EINVAL);
+       if (i != ntokens)
                goto err_kfree;
-       }
 
        *num_tokens = ntokens;
        return tokenized_data;
@@ -688,7 +683,7 @@ static unsigned int *get_tokenized_data(const char *buf, int *num_tokens)
 err_kfree:
        kfree(tokenized_data);
 err:
-       return tokenized_data;
+       return ERR_PTR(err);
 }
 
 static ssize_t show_target_loads(