Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-09-01 00:31:42 +0300
committerJunio C Hamano <gitster@pobox.com>2023-09-01 00:31:42 +0300
commit3525f1dbc18ae36ca9c671e807d6aac2ac432600 (patch)
treed859e5176e42a3c92eb3160b4ca9e29700dce35b /wt-status.c
parent967bfc589421774886f006265bf7c78717274ed3 (diff)
parenta9b5955e07793ceadaad05315c1599226d01292f (diff)
Merge branch 'ob/sequencer-empty-hint-fix'
The use of API for consistency between two calls to require_clean_work_tree() from the sequencer code has been cleaned up. * ob/sequencer-empty-hint-fix: sequencer: rectify empty hint in call of require_clean_work_tree()
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c
index 5b1378965c..bdbcf73cbf 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -2655,8 +2655,12 @@ int require_clean_work_tree(struct repository *r,
}
if (err) {
- if (hint)
+ if (hint) {
+ if (!*hint)
+ BUG("empty hint passed to require_clean_work_tree();"
+ " use NULL instead");
error("%s", hint);
+ }
if (!gently)
exit(128);
}