From 75b2af6df8d0980470d5e5a576280af598a988fc Mon Sep 17 00:00:00 2001
From: Josh Bell <josh@lindenlab.com>
Date: Fri, 25 Jul 2008 00:15:56 +0000
Subject: [PATCH] svn merge -r 92383:92992
 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-23-Server -->
 release

Backport fixes and other cruft from the production branch:
* DEV-16158 make_deploy_group.py queries simulator_standby table not region conductor
* DEV-17891 SEC-118: Classifieds can be created with any amount paid for L$50
* QAR-745 Test rez object security break - SEC-104 (and possibly SEC-115)
* DEV-18161 allow_negative_balance parameter for sink operation so fraud team can dock the accounts of people who bought bad L$
* DEV-18217 Crash rate >10x higher in 1.23.2 than 1.22.4
* DEV-15570 Enable Improved IM web service
* add auth.py from interop-5 (for interop login testing on preview grid)

did-you-know-that-dataserver-is-deprecated?
---
 indra/llcommon/llstl.h           | 2 ++
 indra/llcommon/llversionserver.h | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/indra/llcommon/llstl.h b/indra/llcommon/llstl.h
index 988e706091b..99fc83274b0 100644
--- a/indra/llcommon/llstl.h
+++ b/indra/llcommon/llstl.h
@@ -105,6 +105,7 @@ struct DeletePairedPointer
 	template<typename T> void operator()(T &ptr) const
 	{
 		delete ptr.second;
+		ptr.second = NULL;
 	}
 };
 struct DeletePairedPointerArray
@@ -112,6 +113,7 @@ struct DeletePairedPointerArray
 	template<typename T> void operator()(T &ptr) const
 	{
 		delete[] ptr.second;
+		ptr.second = NULL;
 	}
 };
 
diff --git a/indra/llcommon/llversionserver.h b/indra/llcommon/llversionserver.h
index 5fbf6582dab..370689b46ba 100644
--- a/indra/llcommon/llversionserver.h
+++ b/indra/llcommon/llversionserver.h
@@ -34,8 +34,8 @@
 
 const S32 LL_VERSION_MAJOR = 1;
 const S32 LL_VERSION_MINOR = 23;
-const S32 LL_VERSION_PATCH = 2;
-const S32 LL_VERSION_BUILD = 92378;
+const S32 LL_VERSION_PATCH = 3;
+const S32 LL_VERSION_BUILD = 92647;
 
 const char * const LL_CHANNEL = "Second Life Server";
 
-- 
GitLab