aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/config-ini.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/config-ini.c b/src/config-ini.c
index 01ba99c..5231ba5 100644
--- a/src/config-ini.c
+++ b/src/config-ini.c
@@ -39,6 +39,8 @@
static FILE *
open_config_file(const char *filepath)
{
+ FILE *f = NULL;
+
if (filepath == NULL) {
char cp[MAX_CONFIG_PATH];
char *env;
@@ -54,21 +56,21 @@ open_config_file(const char *filepath)
}
if (filepath != NULL) {
- FILE *f = fopen(filepath, "r");
+ f = fopen(filepath, "r");
if (f != NULL) return f;
else if (f == NULL && errno != ENOENT) return NULL;
}
/* TODO look in getenv("XDG_CONFIG_DIRS") */
} else {
- FILE *f = fopen(filepath, "r");
+ f = fopen(filepath, "r");
if (f == NULL) {
perror("fopen");
return NULL;
}
}
- return NULL;
+ return f;
}
int