summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-08-07 10:38:41 -0700
committerRussell Belfer <rb@github.com>2013-08-07 10:38:41 -0700
commitc7d4904c47d493073b8f816d2b17dcf68eefe26d (patch)
tree533772f695abb6728bba54c7ddf08239e4d23a29 /src
parentc5780abb024a3d570bc1e7eb8c892a60b77bad84 (diff)
parent2d9f5b9f13107a4f59ea1c055620efeb603f2bab (diff)
downloadlibgit2-c7d4904c47d493073b8f816d2b17dcf68eefe26d.tar.gz
Merge pull request #1769 from ethomson/configparse
Parse config headers with quoted quotes
Diffstat (limited to 'src')
-rw-r--r--src/config_file.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/config_file.c b/src/config_file.c
index 2b0732a13..570f286c8 100644
--- a/src/config_file.c
+++ b/src/config_file.c
@@ -792,6 +792,11 @@ static int parse_section_header_ext(diskfile_backend *cfg, const char *line, con
}
switch (c) {
+ case 0:
+ set_parse_error(cfg, 0, "Unexpected end-of-line in section header");
+ git_buf_free(&buf);
+ return -1;
+
case '"':
++quote_marks;
continue;
@@ -801,6 +806,12 @@ static int parse_section_header_ext(diskfile_backend *cfg, const char *line, con
switch (c) {
case '"':
+ if (&line[rpos-1] == last_quote) {
+ set_parse_error(cfg, 0, "Missing closing quotation mark in section header");
+ git_buf_free(&buf);
+ return -1;
+ }
+
case '\\':
break;