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:
Diffstat (limited to 'common-main.c')
-rw-r--r--common-main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/common-main.c b/common-main.c
index b6124dd2c2..c531372f3f 100644
--- a/common-main.c
+++ b/common-main.c
@@ -59,6 +59,13 @@ int main(int argc, const char **argv)
exit(result);
}
+static void check_bug_if_BUG(void)
+{
+ if (!bug_called_must_BUG)
+ return;
+ BUG("on exit(): had bug() call(s) in this process without explicit BUG_if_bug()");
+}
+
/* We wrap exit() to call common_exit() in git-compat-util.h */
int common_exit(const char *file, int line, int code)
{
@@ -70,6 +77,7 @@ int common_exit(const char *file, int line, int code)
*/
code &= 0xff;
+ check_bug_if_BUG();
trace2_cmd_exit_fl(file, line, code);
return code;