diff options
author | Jeff King <peff@peff.net> | 2023-12-07 08:24:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-12-09 00:26:21 +0100 |
commit | 0dda4ce9f697a9ddfc1b2a3825dc07827a99d942 (patch) | |
tree | 01e79c185b209abbae35336c8a18cbd74ab7a899 /xdiff-interface.c | |
parent | git_xmerge_config(): prefer error() to die() (diff) | |
download | git-0dda4ce9f697a9ddfc1b2a3825dc07827a99d942.tar.xz git-0dda4ce9f697a9ddfc1b2a3825dc07827a99d942.zip |
imap-send: don't use git_die_config() inside callback
The point of git_die_config() is to let configset users mention the
file/line info for invalid config, like:
if (!git_config_get_int("foo.bar", &value)) {
if (!is_ok(value))
git_die_config("foo.bar");
}
Using it from within a config callback is unnecessary, because we can
simply return an error, at which point the config machinery will mention
the file/line of the offending variable. Worse, using git_die_config()
can actually produce the wrong location when the key is found in
multiple spots. For instance, with config like:
[imap]
host
host = foo
we'll report the line number of the "host = foo" line, but the problem
is on the implicit-bool "host" line.
We can fix it by just returning an error code.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'xdiff-interface.c')
0 files changed, 0 insertions, 0 deletions