aboutsummaryrefslogtreecommitdiff
path: root/src/Config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Config.cpp')
-rw-r--r--src/Config.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Config.cpp b/src/Config.cpp
index 33ca9dc..3fb2b26 100644
--- a/src/Config.cpp
+++ b/src/Config.cpp
@@ -119,7 +119,9 @@ void Load()
char entryval[1024];
while (!feof(f))
{
- fgets(linebuf, 1024, f);
+ if (fgets(linebuf, 1024, f) == NULL)
+ printf("Error reading string from file!");
+
int ret = sscanf(linebuf, "%31[A-Za-z_0-9]=%[^\t\r\n]", entryname, entryval);
entryname[31] = '\0';
if (ret < 2) continue;