Skip to content

Commit a07b10c

Browse files
committed
Merge branch 'maint-1.6.4' into maint-1.6.5
* maint-1.6.4: Check size of path buffer before writing into it rev-parse: fix --parse-opt --keep-dashdash --stop-at-non-option
2 parents 8024d59 + 1b0b962 commit a07b10c

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

builtin-rev-parse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,8 @@ static int cmd_parseopt(int argc, const char **argv, const char *prefix)
397397
ALLOC_GROW(opts, onb + 1, osz);
398398
memset(opts + onb, 0, sizeof(opts[onb]));
399399
argc = parse_options(argc, argv, prefix, opts, usage,
400-
keep_dashdash ? PARSE_OPT_KEEP_DASHDASH : 0 |
401-
stop_at_non_option ? PARSE_OPT_STOP_AT_NON_OPTION : 0);
400+
(keep_dashdash ? PARSE_OPT_KEEP_DASHDASH : 0) |
401+
(stop_at_non_option ? PARSE_OPT_STOP_AT_NON_OPTION : 0));
402402

403403
strbuf_addf(&parsed, " --");
404404
sq_quote_argv(&parsed, argv, 0);

setup.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ static int is_git_directory(const char *suspect)
156156
char path[PATH_MAX];
157157
size_t len = strlen(suspect);
158158

159+
if (PATH_MAX <= len + strlen("/objects"))
160+
die("Too long path: %.*s", 60, suspect);
159161
strcpy(path, suspect);
160162
if (getenv(DB_ENVIRONMENT)) {
161163
if (access(getenv(DB_ENVIRONMENT), X_OK))

t/t1502-rev-parse-parseopt.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,22 @@ test_expect_success 'test --parseopt --keep-dashdash' '
7979
test_cmp expect output
8080
'
8181

82+
cat >expect <<EOF
83+
set -- --foo -- '--' 'arg' '--spam=ham'
84+
EOF
85+
86+
test_expect_success 'test --parseopt --keep-dashdash --stop-at-non-option with --' '
87+
git rev-parse --parseopt --keep-dashdash --stop-at-non-option -- --foo -- arg --spam=ham <optionspec >output &&
88+
test_cmp expect output
89+
'
90+
91+
cat > expect <<EOF
92+
set -- --foo -- 'arg' '--spam=ham'
93+
EOF
94+
95+
test_expect_success 'test --parseopt --keep-dashdash --stop-at-non-option without --' '
96+
git rev-parse --parseopt --keep-dashdash --stop-at-non-option -- --foo arg --spam=ham <optionspec >output &&
97+
test_cmp expect output
98+
'
99+
82100
test_done

0 commit comments

Comments
 (0)