diff options
author | Jeff King <peff@peff.net> | 2016-06-16 19:37:20 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-06-16 17:21:48 -0700 |
commit | 43ec55091553658e4cfb1d927ff2a0fb50a8fdba (patch) | |
tree | cebab399638a45acf49909eadd7efa67691f9825 /config.mak.in | |
parent | Git 2.4.11 (diff) | |
download | tgif-43ec55091553658e4cfb1d927ff2a0fb50a8fdba.tar.xz |
bisect: always call setup_revisions after init_revisions
init_revisions() initializes the rev_info struct to default
values, and setup_revisions() parses any command-line
arguments and finalizes the struct.
In e22278c (bisect: display first bad commit without forking
a new process, 2009-05-28), a show_diff_tree() was added
that calls the former but not the latter. It doesn't have
any arguments to parse, but it still should do the
finalizing step.
This may have caused other minor bugs over the years, but it
became much more prominent after fe37a9c (pretty: allow
tweaking tabwidth in --expand-tabs, 2016-03-29). That leaves
the expected tab width as "-1", rather than the true default
of "8". When we see a commit with tabs to be expanded, we
end up trying to add (size_t)-1 spaces to a strbuf, which
complains about the integer overflow.
The fix is easy: just call setup_revisions() with no
arguments.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.in')
0 files changed, 0 insertions, 0 deletions