diff options
author | Diva Canto | 2013-07-15 12:33:31 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-15 12:33:31 -0700 |
commit | 687c1a420a6f3c254eb7104fee40a79fc6a39e1d (patch) | |
tree | add5c8440a66edf8a2f0bad9cfaa5a81e159ba8c /OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs | |
parent | Puts RequestImage (UDP) back to asyn -- CPU spike hunt (diff) | |
download | opensim-SC_OLD-687c1a420a6f3c254eb7104fee40a79fc6a39e1d.zip opensim-SC_OLD-687c1a420a6f3c254eb7104fee40a79fc6a39e1d.tar.gz opensim-SC_OLD-687c1a420a6f3c254eb7104fee40a79fc6a39e1d.tar.bz2 opensim-SC_OLD-687c1a420a6f3c254eb7104fee40a79fc6a39e1d.tar.xz |
Guard against null ref
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs index b90df17..5b0859b 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs | |||
@@ -351,7 +351,8 @@ namespace OpenSim.Region.ClientStack.Linden | |||
351 | 351 | ||
352 | aPollRequest poolreq = m_queue.Dequeue(); | 352 | aPollRequest poolreq = m_queue.Dequeue(); |
353 | 353 | ||
354 | poolreq.thepoll.Process(poolreq); | 354 | if (poolreq != null && poolreq.thepoll != null) |
355 | poolreq.thepoll.Process(poolreq); | ||
355 | } | 356 | } |
356 | } | 357 | } |
357 | } | 358 | } |