aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 3b0fd8e..1e22fcc 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -903,8 +903,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
903 903
904 private void HandleUseCircuitCode(object o) 904 private void HandleUseCircuitCode(object o)
905 { 905 {
906 IPEndPoint remoteEndPoint; 906 IPEndPoint remoteEndPoint = null;
907 IClientAPI client; 907 IClientAPI client = null;
908 908
909 try 909 try
910 { 910 {
@@ -957,7 +957,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
957 "[LLUDPSERVER]: UseCircuitCode handling from endpoint {0}, client {1} {2} failed. Exception {3}{4}", 957 "[LLUDPSERVER]: UseCircuitCode handling from endpoint {0}, client {1} {2} failed. Exception {3}{4}",
958 remoteEndPoint != null ? remoteEndPoint.ToString() : "n/a", 958 remoteEndPoint != null ? remoteEndPoint.ToString() : "n/a",
959 client != null ? client.Name : "unknown", 959 client != null ? client.Name : "unknown",
960 client != null ? client.AgentId : "unknown", 960 client != null ? client.AgentId.ToString() : "unknown",
961 e.Message, 961 e.Message,
962 e.StackTrace); 962 e.StackTrace);
963 } 963 }