summaryrefslogtreecommitdiff
path: root/src/config_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config_file.c')
-rw-r--r--src/config_file.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/config_file.c b/src/config_file.c
index 147e8504..044a2431 100644
--- a/src/config_file.c
+++ b/src/config_file.c
@@ -721,11 +721,6 @@ static int parse_section_header(diskfile_backend *cfg, char **section_out)
c = line[pos++];
do {
- if (cfg->reader.eof){
- error = git__throw(GIT_EOBJCORRUPTED, "Failed to parse header. Config file ended unexpectedly");
- goto error;
- }
-
if (isspace(c)){
name[name_length] = '\0';
error = parse_section_header_ext(line, name, section_out);
@@ -743,6 +738,9 @@ static int parse_section_header(diskfile_backend *cfg, char **section_out)
} while ((c = line[pos++]) != ']');
+ if (line[pos - 1] != ']')
+ return git__throw(GIT_EOBJCORRUPTED, "Failed to parse header. Config file ended unexpectedly");
+
name[name_length] = 0;
free(line);
git__strtolower(name);