diff options
author | Logan Dethrow <log@lindenlab.com> | 2011-07-05 16:55:43 -0400 |
---|---|---|
committer | Logan Dethrow <log@lindenlab.com> | 2011-07-05 16:55:43 -0400 |
commit | 975975029d7f248cdf917da670ffd6c6b98d40c1 (patch) | |
tree | 4e7af2d0bf697bf930554d59bd7327fba52e4c69 /indra/llmessage/lliosocket.cpp | |
parent | aec182e3dbc2e4c492167fc250583b9de5ec43f8 (diff) |
STORM-1112 Fixed crash on quit. Other minor fixes:
* Reordered HTTP proxy choices in settings dialog
* Now using setBlocking and setNonBlocking LLSocket methods during TCP handshakes.
* Made those LLSocket methods available outside the class.
Diffstat (limited to 'indra/llmessage/lliosocket.cpp')
-rw-r--r-- | indra/llmessage/lliosocket.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llmessage/lliosocket.cpp b/indra/llmessage/lliosocket.cpp index 8c752fbe30..a349849c30 100644 --- a/indra/llmessage/lliosocket.cpp +++ b/indra/llmessage/lliosocket.cpp @@ -251,10 +251,12 @@ LLSocket::~LLSocket() { ll_debug_socket("Destroying socket", mSocket); apr_socket_close(mSocket); + mSocket = NULL; } if(mPool) { apr_pool_destroy(mPool); + mPool = NULL; } } |