diff options
author | UbitUmarov | 2016-08-22 06:23:55 +0100 |
---|---|---|
committer | UbitUmarov | 2016-08-22 06:23:55 +0100 |
commit | 4f4227d5bbb9a3d86a0d024fcdc4f14f23889735 (patch) | |
tree | 71fbe4c22b9d695ed435ae3ee5df4c6f1b50d750 | |
parent | workaround potencial memory leak (diff) | |
download | opensim-SC_OLD-4f4227d5bbb9a3d86a0d024fcdc4f14f23889735.zip opensim-SC_OLD-4f4227d5bbb9a3d86a0d024fcdc4f14f23889735.tar.gz opensim-SC_OLD-4f4227d5bbb9a3d86a0d024fcdc4f14f23889735.tar.bz2 opensim-SC_OLD-4f4227d5bbb9a3d86a0d024fcdc4f14f23889735.tar.xz |
workaround potencial memory leak
-rw-r--r-- | OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs index 839072e..2d590fc 100644 --- a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs +++ b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs | |||
@@ -1193,6 +1193,8 @@ namespace OpenSim.Region.CoreModules.World.Archiver | |||
1193 | } | 1193 | } |
1194 | 1194 | ||
1195 | ControlFileLoaded = true; | 1195 | ControlFileLoaded = true; |
1196 | if(xtr != null) | ||
1197 | xtr.Close(); | ||
1196 | 1198 | ||
1197 | return dearchivedScenes; | 1199 | return dearchivedScenes; |
1198 | } | 1200 | } |