diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-04-20 13:18:56 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-04-20 13:18:56 -0400 |
commit | 0447fe5a57c2b3e0406fd28b665ea9f47d689b2f (patch) | |
tree | e8117a3d738c8f5490eb06c7987e3802e35bc5fa /indra/llcommon | |
parent | b092147a0be579e102c9210c6c99110862e9ad02 (diff) |
SL-371 - increased the limit for StackWalker strings, avoid crashing if mesh has wrong number of mAlternateBindMatrix matrices
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/StackWalker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/StackWalker.h b/indra/llcommon/StackWalker.h index 5a5ed96e6f..834f89c471 100644 --- a/indra/llcommon/StackWalker.h +++ b/indra/llcommon/StackWalker.h @@ -127,7 +127,7 @@ public: // in older compilers in order to use it... starting with VC7 we can declare it as "protected" protected: #endif - enum { STACKWALK_MAX_NAMELEN = 2048 }; // max name length for found symbols + enum { STACKWALK_MAX_NAMELEN = 4096 }; // max name length for found symbols protected: // Entry for each Callstack-Entry |