Skip to content

Commit aa4b78d

Browse files
peffgitster
authored andcommitted
pretty: avoid reading past end-of-string with "%G"
If the user asks for --format=%G with nothing else, we correctly realize that "%G" is not a valid placeholder (it should be "%G?", "%GK", etc). But we still tell the strbuf_expand code that we consumed 2 characters, causing it to jump over the trailing NUL and output garbage. This also fixes the case where "%GX" would be consumed (and produce no output). In other cases, we pass unrecognized placeholders through to the final string. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 06ca0f4 commit aa4b78d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

pretty.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1267,6 +1267,8 @@ static size_t format_commit_one(struct strbuf *sb, /* in UTF-8 */
12671267
if (c->signature_check.key)
12681268
strbuf_addstr(sb, c->signature_check.key);
12691269
break;
1270+
default:
1271+
return 0;
12701272
}
12711273
return 2;
12721274
}

t/t7510-signed-commit.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,10 @@ test_expect_success GPG 'show lack of signature with custom format' '
147147
test_cmp expect actual
148148
'
149149

150+
test_expect_success 'unused %G placeholders are passed through' '
151+
echo "%GX %G" >expect &&
152+
git log -1 --format="%GX %G" >actual &&
153+
test_cmp expect actual
154+
'
155+
150156
test_done

0 commit comments

Comments
 (0)