checkauth-unlock-before-return-20080228

LICENSE IPL10

only matters once you have pthreads, but...
This commit is contained in:
Kevin McBride 2008-02-29 04:41:50 +00:00 committed by Derrick Brashear
parent 502aca9e8c
commit 8ffc274282

View File

@ -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) */