diff options
Diffstat (limited to 'src/engine/config.cpp')
| -rw-r--r-- | src/engine/config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/config.cpp b/src/engine/config.cpp index fb378190..40fbda20 100644 --- a/src/engine/config.cpp +++ b/src/engine/config.cpp @@ -66,12 +66,12 @@ void config_set(const char *line) void config_load(const char *filename) { + char full_path[1024]; if (filename[0] == '~') { char *home = getenv("HOME"); if (home) { - char full_path[1024]; sprintf(full_path, "%s%s", home, filename+1); filename = full_path; } @@ -96,12 +96,12 @@ void config_load(const char *filename) void config_save(const char *filename) { + char full_path[1024]; if (filename[0] == '~') { char *home = getenv("HOME"); if (home) { - char full_path[1024]; sprintf(full_path, "%s%s", home, filename+1); filename = full_path; } |