LLMessage V3 partial merge.
This commit is contained in:
@@ -47,6 +47,7 @@
|
|||||||
#include "llbuffer.h"
|
#include "llbuffer.h"
|
||||||
#include "lliopipe.h"
|
#include "lliopipe.h"
|
||||||
#include "llsd.h"
|
#include "llsd.h"
|
||||||
|
#include "llthread.h"
|
||||||
|
|
||||||
class LLMutex;
|
class LLMutex;
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,8 @@
|
|||||||
#ifndef LL_LLHTTPNODE_H
|
#ifndef LL_LLHTTPNODE_H
|
||||||
#define LL_LLHTTPNODE_H
|
#define LL_LLHTTPNODE_H
|
||||||
|
|
||||||
#include "llmemory.h"
|
#include "llpointer.h"
|
||||||
|
#include "llrefcount.h"
|
||||||
#include "llsd.h"
|
#include "llsd.h"
|
||||||
|
|
||||||
class LLChainIOFactory;
|
class LLChainIOFactory;
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
#include "llsd.h"
|
#include "llsd.h"
|
||||||
#include "llsdserialize.h"
|
#include "llsdserialize.h"
|
||||||
#include "llsdutil_math.h"
|
#include "llsdutil_math.h"
|
||||||
#include "llmemory.h"
|
#include "llpointer.h"
|
||||||
#include "message.h"
|
#include "message.h"
|
||||||
|
|
||||||
#include "message.h"
|
#include "message.h"
|
||||||
|
|||||||
@@ -36,7 +36,8 @@
|
|||||||
#include "llhost.h"
|
#include "llhost.h"
|
||||||
#include "lluuid.h"
|
#include "lluuid.h"
|
||||||
#include "llsd.h"
|
#include "llsd.h"
|
||||||
#include "llmemory.h"
|
#include "llrefcount.h"
|
||||||
|
#include "llpointer.h"
|
||||||
#include "v3math.h"
|
#include "v3math.h"
|
||||||
|
|
||||||
class LLMessageSystem;
|
class LLMessageSystem;
|
||||||
|
|||||||
@@ -434,10 +434,9 @@ inline void LLTemplateMessageReader::getString(const char *block, const char *va
|
|||||||
|
|
||||||
inline void LLTemplateMessageReader::getString(const char *block, const char *var, std::string& outstr, S32 blocknum )
|
inline void LLTemplateMessageReader::getString(const char *block, const char *var, std::string& outstr, S32 blocknum )
|
||||||
{
|
{
|
||||||
char s[MTUBYTES];
|
char s[MTUBYTES + 1]= {0}; // every element is initialized with 0
|
||||||
s[0] = '\0';
|
|
||||||
getData(block, var, s, 0, blocknum, MTUBYTES);
|
getData(block, var, s, 0, blocknum, MTUBYTES);
|
||||||
s[MTUBYTES - 1] = '\0';
|
s[MTUBYTES] = '\0';
|
||||||
outstr = s;
|
outstr = s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,7 @@
|
|||||||
* COMPLETENESS OR PERFORMANCE.
|
* COMPLETENESS OR PERFORMANCE.
|
||||||
* $/LicenseInfo$
|
* $/LicenseInfo$
|
||||||
*/
|
*/
|
||||||
|
#include "linden_common.h"
|
||||||
|
|
||||||
#include "sound_ids.h"
|
#include "sound_ids.h"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user