[Opensim-dev] [Opensim-commits] r9036 - in trunk/OpenSim

Dr Scofield DrScofield at xyzzyxyzzy.net
Tue Apr 14 09:46:38 UTC 2009


Mikko Pallari wrote:
> Hi,
> 
> Was there some particular reason why the OpenSim.32BitLaunch.csproj was removed from trunk? It has been previously found very useful: http://teddmaa.blogspot.com/2008/12/opensim-in-visual-studio-on-win64.html
> 

as alan said, no, there wasn't aside from me doing a lousy job checking the
commit --- i assumed that *.csproj files were generated as part of prebuild (and
that the commit from alan was merely cleaning up stuff), should have checked
instead of just assumed, i apologize for causing inconvenience/pain.

	DrS/dirk

> Cheers,
> Mikko
> 
> -----Original Message-----
> From: opensim-commits-bounces at lists.berlios.de [mailto:opensim-commits-bounces at lists.berlios.de] On Behalf Of drscofield at opensimulator.org
> Sent: 7. huhtikuuta 2009 19:54
> To: opensim-commits at lists.berlios.de
> Subject: [Opensim-commits] r9036 - in trunk/OpenSim: Region/OptionalModules/Avatar/Chat Tools/OpenSim.32BitLaunch Tools/OpenSim.GridLaunch
> 
> Author: drscofield
> Date: 2009-04-07 09:53:41 -0700 (Tue, 07 Apr 2009)
> New Revision: 9036
> 
> Removed:
>    trunk/OpenSim/Tools/OpenSim.32BitLaunch/OpenSim.32BitLaunch.csproj
>    trunk/OpenSim/Tools/OpenSim.GridLaunch/OpenSim.GridLaunch.csproj
> Modified:
>    trunk/OpenSim/Region/OptionalModules/Avatar/Chat/IRCBridgeModule.cs
> Log:
> From: Alan Webb <alan_webb at us.ibm.com>
> 
>   Fix null reference exception during close down of IRC module if the
>   region was not actually initialized.
> 
> Modified: trunk/OpenSim/Region/OptionalModules/Avatar/Chat/IRCBridgeModule.cs
> ===================================================================
> --- trunk/OpenSim/Region/OptionalModules/Avatar/Chat/IRCBridgeModule.cs 2009-04-07 16:41:07 UTC (rev 9035)
> +++ trunk/OpenSim/Region/OptionalModules/Avatar/Chat/IRCBridgeModule.cs 2009-04-07 16:53:41 UTC (rev 9036)
> @@ -148,8 +148,16 @@
>              if (!enabled)
>                  return;
> 
> +            if (region == null)
> +                return;
> +
>              region.Close();
> -            lock (m_regions) m_regions.Remove(region);
> +
> +            if(m_regions.Contains(region))
> +            {
> +                lock (m_regions) m_regions.Remove(region);
> +            }
> +
>          }
> 
>          #endregion
> 
> _______________________________________________
> Opensim-commits mailing list
> Opensim-commits at lists.berlios.de
> https://lists.berlios.de/mailman/listinfo/opensim-commits
> _______________________________________________
> Opensim-dev mailing list
> Opensim-dev at lists.berlios.de
> https://lists.berlios.de/mailman/listinfo/opensim-dev
> 


-- 
dr dirk husemann ---- virtual worlds research ---- ibm zurich research lab
SL: dr scofield ---- drscofield at xyzzyxyzzy.net ---- http://xyzzyxyzzy.net/
RL: hud at zurich.ibm.com - +41 44 724 8573 - http://www.zurich.ibm.com/~hud/



More information about the Opensim-dev mailing list