* If the world map module encounters an error, not all of the objects will be created and will therefore be null in the finally clause. Therefore, only dispose of objects that are not null in the finally clause.

* fixes mantis #3848
trunk
Teravus Ovares 2009-07-17 21:13:50 +00:00
parent eb1a6e9b87
commit b6caf1606d
1 changed files with 12 additions and 4 deletions

View File

@ -806,10 +806,18 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
finally
{
// Reclaim memory, these are unmanaged resources
mapTexture.Dispose();
image.Dispose();
imgstream.Close();
imgstream.Dispose();
// If we encountered an exception, one or more of these will be null
if (mapTexture != null)
mapTexture.Dispose();
if (image != null)
image.Dispose();
if (imgstream != null)
{
imgstream.Close();
imgstream.Dispose();
}
}
}
else