From de9e4c0285efc87d0b7fe35ce72500a6dcdbb998 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Thu, 3 Jun 2004 22:44:18 +0000 Subject: [PATCH] Oops. Fixes last night's test failures in last night's build.. * com_err.c (com_err_va): In success case, don't then fall through into error case. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16402 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/et/ChangeLog | 5 +++++ src/util/et/com_err.c | 1 + 2 files changed, 6 insertions(+) diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog index caf7c990c..d26bb93b1 100644 --- a/src/util/et/ChangeLog +++ b/src/util/et/ChangeLog @@ -1,3 +1,8 @@ +2004-06-03 Ken Raeburn + + * com_err.c (com_err_va): In success case, don't then fall + through into error case. + 2004-06-02 Ken Raeburn * com_err.c: Include stdlib.h. diff --git a/src/util/et/com_err.c b/src/util/et/com_err.c index e7843ecc5..94b379816 100644 --- a/src/util/et/com_err.c +++ b/src/util/et/com_err.c @@ -103,6 +103,7 @@ void KRB5_CALLCONV com_err_va(const char *whoami, p = com_err_hook ? com_err_hook : default_com_err_proc; (*p)(whoami, code, fmt, ap); k5_mutex_unlock(&com_err_hook_lock); + return; best_try: /* Yikes. Our library initialization failed or we couldn't lock -- 2.26.2