mirror of
https://github.com/swaywm/sway.git
synced 2024-11-21 23:41:27 +00:00
config: use format_str() instead of hand-rolled snprintf()
This commit is contained in:
parent
93d391651c
commit
88b2abf5f2
|
@ -352,13 +352,7 @@ static char *config_path(const char *prefix, const char *config_folder) {
|
||||||
if (!prefix || !prefix[0] || !config_folder || !config_folder[0]) {
|
if (!prefix || !prefix[0] || !config_folder || !config_folder[0]) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
return format_str("%s/%s/config", prefix, config_folder);
|
||||||
const char *filename = "config";
|
|
||||||
|
|
||||||
size_t size = 3 + strlen(prefix) + strlen(config_folder) + strlen(filename);
|
|
||||||
char *path = calloc(size, sizeof(char));
|
|
||||||
snprintf(path, size, "%s/%s/%s", prefix, config_folder, filename);
|
|
||||||
return path;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *get_config_path(void) {
|
static char *get_config_path(void) {
|
||||||
|
@ -368,10 +362,7 @@ static char *get_config_path(void) {
|
||||||
|
|
||||||
const char *config_home = getenv("XDG_CONFIG_HOME");
|
const char *config_home = getenv("XDG_CONFIG_HOME");
|
||||||
if ((config_home == NULL || config_home[0] == '\0') && home != NULL) {
|
if ((config_home == NULL || config_home[0] == '\0') && home != NULL) {
|
||||||
size_t size_fallback = 1 + strlen(home) + strlen("/.config");
|
config_home_fallback = format_str("%s/.config", home);
|
||||||
config_home_fallback = calloc(size_fallback, sizeof(char));
|
|
||||||
if (config_home_fallback != NULL)
|
|
||||||
snprintf(config_home_fallback, size_fallback, "%s/.config", home);
|
|
||||||
config_home = config_home_fallback;
|
config_home = config_home_fallback;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue