summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2011-02-11 19:07:11 -0600
committerDave Parks <davep@lindenlab.com>2011-02-11 19:07:11 -0600
commita761351396d81c4de7598340c61bf9cd4115071f (patch)
tree63d661146cd8cff2b4b8647e51b03234ac3d6b51
parent246b2100e18e6e9e596aacc92a65bd7b6442b0ec (diff)
SH-813 Switch llerrs in llcurl.cpp to an assert.
-rw-r--r--indra/llmessage/llcurl.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp
index 2b9bfff536..b0f68df2e8 100644
--- a/indra/llmessage/llcurl.cpp
+++ b/indra/llmessage/llcurl.cpp
@@ -1199,10 +1199,7 @@ void LLCurl::cleanupClass()
Easy::sFreeHandles.clear();
- if (!Easy::sActiveHandles.empty())
- {
- llerrs << "CURL easy handles not cleaned up on shutdown!" << llendl;
- }
+ llassert(Easy::sActiveHandles.empty());
}
const unsigned int LLCurl::MAX_REDIRECTS = 5;