summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/saveenv.c10
-rw-r--r--common/environment.c12
2 files changed, 15 insertions, 7 deletions
diff --git a/commands/saveenv.c b/commands/saveenv.c
index 43f16dc490..6f210b7ec1 100644
--- a/commands/saveenv.c
+++ b/commands/saveenv.c
@@ -27,7 +27,7 @@ static int do_saveenv(int argc, char *argv[])
{
int ret, opt;
unsigned envfs_flags = 0;
- char *filename, *dirname;
+ char *filename = NULL, *dirname = NULL;
printf("saving environment\n");
while ((opt = getopt(argc, argv, "z")) > 0) {
@@ -39,15 +39,11 @@ static int do_saveenv(int argc, char *argv[])
}
/* destination and source are given? */
- if (argc - optind < 2)
- dirname = "/env";
- else
+ if (argc - optind > 1)
dirname = argv[optind + 1];
/* destination only given? */
- if (argc - optind < 1)
- filename = default_environment_path_get();
- else
+ if (argc - optind > 0)
filename = argv[optind];
ret = envfs_save(filename, dirname, envfs_flags);
diff --git a/common/environment.c b/common/environment.c
index 2639411e26..eed4833c8a 100644
--- a/common/environment.c
+++ b/common/environment.c
@@ -253,6 +253,12 @@ int envfs_save(const char *filename, const char *dirname, unsigned flags)
void *buf = NULL, *wbuf;
struct envfs_entry *env;
+ if (!filename)
+ filename = default_environment_path_get();
+
+ if (!dirname)
+ dirname = "/env";
+
data.writep = NULL;
data.base = dirname;
@@ -540,6 +546,12 @@ int envfs_load(const char *filename, const char *dir, unsigned flags)
int ret = 0;
size_t size, rsize;
+ if (!filename)
+ filename = default_environment_path_get();
+
+ if (!dir)
+ dir = "/env";
+
envfd = open(filename, O_RDONLY);
if (envfd < 0) {
printf("environment load %s: %s\n", filename, errno_str());