aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpolymorph.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:50 -0500
committerJacek Antonelli2008-08-15 23:44:50 -0500
commit89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch)
treebcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/newview/llpolymorph.cpp
parentSecond Life viewer sources 1.13.3.2 (diff)
downloadmeta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz
Second Life viewer sources 1.14.0.0
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llpolymorph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llpolymorph.cpp b/linden/indra/newview/llpolymorph.cpp
index ae9b37a..3937da2 100644
--- a/linden/indra/newview/llpolymorph.cpp
+++ b/linden/indra/newview/llpolymorph.cpp
@@ -49,8 +49,8 @@ LLPolyMorphData::LLPolyMorphData(char *morph_name)
49{ 49{
50 llassert (morph_name); 50 llassert (morph_name);
51 51
52 mName = new char[strlen(morph_name) + 1]; 52 mName = new char[strlen(morph_name) + 1]; /*Flawfinder: ignore*/
53 strcpy(mName, morph_name); 53 strcpy(mName, morph_name); /*Flawfinder: ignore*/
54 54
55 mNumIndices = 0; 55 mNumIndices = 0;
56 mCurrentIndex = 0; 56 mCurrentIndex = 0;