]> git.sur5r.net Git - u-boot/commitdiff
env_nand.c: print error message and fail gracefully
authorWolfgang Denk <wd@denx.de>
Wed, 6 Jan 2010 05:34:17 +0000 (22:34 -0700)
committerWolfgang Denk <wd@denx.de>
Wed, 6 Jan 2010 16:17:14 +0000 (17:17 +0100)
env_nand.c would crash silently if a malloc() for the environment
buffers failed; make it print an error message and fail gracefully,
i. e. use the default environment then.

Signed-off-by: Wolfgang Denk <wd@denx.de>
common/env_nand.c

index ca631af195b1d30b9c575bc0d9368322e09e31eb..a5166cbe8d0faefa65ee99bc3a67fc2b104e33be 100644 (file)
@@ -298,6 +298,15 @@ void env_relocate_spec (void)
        tmp_env1 = (env_t *) malloc(CONFIG_ENV_SIZE);
        tmp_env2 = (env_t *) malloc(CONFIG_ENV_SIZE);
 
+       if ((tmp_env1 == NULL) || (tmp_env2 == NULL)) {
+               puts("Can't allocate buffers for environment\n");
+               if (tmp_env1)
+                       free (tmp_env1);
+               if (tmp_env2)
+                       free (tmp_env2);
+               return use_default();
+       }
+
        if (readenv(CONFIG_ENV_OFFSET, (u_char *) tmp_env1))
                puts("No Valid Environment Area Found\n");
        if (readenv(CONFIG_ENV_OFFSET_REDUND, (u_char *) tmp_env2))