diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index f1dc20e..983e1a9 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -502,7 +502,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
502 | // horribly tangly. Hopefully it should be possible to greatly simplify it. | 502 | // horribly tangly. Hopefully it should be possible to greatly simplify it. |
503 | if (shutdownCircuit) | 503 | if (shutdownCircuit) |
504 | { | 504 | { |
505 | OnConnectionClosed(this); | 505 | if (OnConnectionClosed != null) |
506 | OnConnectionClosed(this); | ||
506 | } | 507 | } |
507 | else | 508 | else |
508 | { | 509 | { |