From 5c1af6ac6f09cdfa32772b2a640983370f23177d Mon Sep 17 00:00:00 2001 From: Kevin McBride Date: Fri, 29 Feb 2008 15:13:06 +0000 Subject: [PATCH] DEVEL15-checkauth-unlock-before-return-20080228 LICENSE IPL10 only matters once you have pthreads, but... (cherry picked from commit 8ffc274282fa40c6e2d35ba861b9dc932afa032d) --- src/auth/userok.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/auth/userok.c b/src/auth/userok.c index 766ffe34b8..d1dc286546 100644 --- a/src/auth/userok.c +++ b/src/auth/userok.c @@ -51,9 +51,11 @@ int afsconf_CheckAuth(register struct afsconf_dir *adir, register struct rx_call *acall) { + int rc; LOCK_GLOBAL_MUTEX; - return ((afsconf_SuperUser(adir, acall, NULL) == 0) ? 10029 : 0); + rc = ((afsconf_SuperUser(adir, acall, NULL) == 0) ? 10029 : 0); UNLOCK_GLOBAL_MUTEX; + return rc; } #endif /* !defined(UKERNEL) */