diff options
| author | callum <none@none> | 2012-04-23 11:28:52 -0700 | 
|---|---|---|
| committer | callum <none@none> | 2012-04-23 11:28:52 -0700 | 
| commit | 4ccae31320a7bc321a4d1df105cdf3b70b60d503 (patch) | |
| tree | 1e8419d6a1878fe2aeb632b9c49af1b4d2660ee8 | |
| parent | 08704b36f6850d2d2fd29bb984238f760215356a (diff) | |
SH-3115 FIX Crash on exit, curl handles not empty
Reviewed by Ted.
| -rw-r--r-- | indra/llmessage/llcurl.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index 3bcaffc275..4d92cfd32f 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -1506,7 +1506,8 @@ void LLCurl::cleanupClass()  	delete sHandleMutexp ;  	sHandleMutexp = NULL ; -	llassert(Easy::sActiveHandles.empty()); +	// removed as per https://jira.secondlife.com/browse/SH-3115 +	//llassert(Easy::sActiveHandles.empty());  }  //static  | 
