diff options
| author | Steve Bennetts <steve@lindenlab.com> | 2009-11-06 14:36:16 -0800 | 
|---|---|---|
| committer | Steve Bennetts <steve@lindenlab.com> | 2009-11-06 14:36:16 -0800 | 
| commit | a24eee0dd69940f7c3ca8d7569c8ae965072376b (patch) | |
| tree | 7b2940479943105ce0818a5beb6ea24ce3113137 /indra/llcommon | |
| parent | eea1057b706cbe1a3b94eab7e6eb00b54adf2c05 (diff) | |
DEV-42272 - viewer crash on startup in LLCurlRequest::process
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/llqueuedthread.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/indra/llcommon/llqueuedthread.cpp b/indra/llcommon/llqueuedthread.cpp index 395d298887..e7ad571a90 100644 --- a/indra/llcommon/llqueuedthread.cpp +++ b/indra/llcommon/llqueuedthread.cpp @@ -113,8 +113,11 @@ S32 LLQueuedThread::update(U32 max_time_ms)  {  	if (!mStarted)  	{ -		startThread(); -		mStarted = TRUE; +		if (!mThreaded) +		{ +			startThread(); +			mStarted = TRUE; +		}  	}  	return updateQueue(max_time_ms);  } | 
