From: Simon Wilkinson Date: Tue, 26 Feb 2013 12:06:15 +0000 (+0000) Subject: bosserver: Catch failures to create daemon thread X-Git-Tag: upstream/1.8.0_pre1^2~1410 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4587ddc130547b4cce723476cfa798a03ccc0320;p=packages%2Fo%2Fopenafs.git bosserver: Catch failures to create daemon thread If we can't create the bozo daemon thread, then don't keep going regardless. Just warn the user and exit. Caught by coverity (#988414) Change-Id: I46445b1744f7c3c944e917b33a6fc6fb669df002 Reviewed-on: http://gerrit.openafs.org/9269 Tested-by: BuildBot Reviewed-by: Derrick Brashear Reviewed-by: Jeffrey Altman --- diff --git a/src/bozo/bosserver.c b/src/bozo/bosserver.c index d19e3887f..baa73cfb2 100644 --- a/src/bozo/bosserver.c +++ b/src/bozo/bosserver.c @@ -1103,8 +1103,12 @@ main(int argc, char **argv, char **envp) } } - LWP_CreateProcess(BozoDaemon, BOZO_LWP_STACKSIZE, /* priority */ 1, - /* param */ NULL , "bozo-the-clown", &bozo_pid); + code = LWP_CreateProcess(BozoDaemon, BOZO_LWP_STACKSIZE, /* priority */ 1, + /* param */ NULL , "bozo-the-clown", &bozo_pid); + if (code) { + bozo_Log("Failed to create daemon thread\n"); + exit(1); + } /* try to read the key from the config file */ tdir = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH);