summaryrefslogtreecommitdiff
path: root/indra/llplugin
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-11-11 01:55:26 +0200
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-11-11 01:55:26 +0200
commit32df877cd73b5b6a3672d0159c982077a4b67a9d (patch)
tree3db2802f0ab39f2d7b1264e2ac1d3599f1a3bd5a /indra/llplugin
parenteccc9057d9d9799d3d5056bdfe255bd9e5e2be6a (diff)
parente028ae4f023420bedd4e4106f4749e700a14c3cc (diff)
Merge branch 'develop' into marchcat/c-develop
# Conflicts: # indra/newview/llvoavatar.cpp
Diffstat (limited to 'indra/llplugin')
-rw-r--r--indra/llplugin/llpluginprocessparent.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llplugin/llpluginprocessparent.cpp b/indra/llplugin/llpluginprocessparent.cpp
index b838e05560..a79774e900 100644
--- a/indra/llplugin/llpluginprocessparent.cpp
+++ b/indra/llplugin/llpluginprocessparent.cpp
@@ -400,9 +400,14 @@ void LLPluginProcessParent::idle(void)
apr_sockaddr_t* addr = NULL;
mListenSocket = LLSocket::create(gAPRPoolp, LLSocket::STREAM_TCP);
mBoundPort = 0;
+ if (!mListenSocket)
+ {
+ killSockets();
+ errorState();
+ break;
+ }
// This code is based on parts of LLSocket::create() in lliosocket.cpp.
-
status = apr_sockaddr_info_get(
&addr,
"127.0.0.1",