mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 08:43:02 +01:00
fix bug
This commit is contained in:
parent
93d77fdeca
commit
9b997fbf01
@ -102,9 +102,11 @@ int settings_load(struct user_settings *s, char *path)
|
||||
|
||||
free(user_config_dir);
|
||||
|
||||
if (fp == NULL) {
|
||||
if (fp == NULL && !path) {
|
||||
if ((fp = fopen(dflt_path, "w")) == NULL)
|
||||
return -1;
|
||||
} else if (fp == NULL && path) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
char line[MAX_STR_SIZE];
|
||||
|
Loading…
Reference in New Issue
Block a user