summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBryan O'Sullivan <bos@lindenlab.com>2009-02-25 01:32:02 +0000
committerBryan O'Sullivan <bos@lindenlab.com>2009-02-25 01:32:02 +0000
commit997d24b83221aa63ef8141a9ab94434d2ba2ddc6 (patch)
treea9e569dcaa963177865100349b5cf0eb554c1973 /indra
parent678d88c639f669b68b90c76ee091ae8c00bd3097 (diff)
Fix a totally awesometastic piece of code
Diffstat (limited to 'indra')
-rw-r--r--indra/llmath/v3color.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llmath/v3color.h b/indra/llmath/v3color.h
index 38c0d68417..179687a32e 100644
--- a/indra/llmath/v3color.h
+++ b/indra/llmath/v3color.h
@@ -57,7 +57,7 @@ public:
LLColor3(); // Initializes LLColor3 to (0, 0, 0)
LLColor3(F32 r, F32 g, F32 b); // Initializes LLColor3 to (r, g, b)
LLColor3(const F32 *vec); // Initializes LLColor3 to (vec[0]. vec[1], vec[2])
- LLColor3(char *color_string); // html format color ie "#FFDDEE"
+ LLColor3(const char *color_string); // html format color ie "#FFDDEE"
explicit LLColor3(const LLColor4& color4); // "explicit" to avoid automatic conversion
explicit LLColor3(const LLVector4& vector4); // "explicit" to avoid automatic conversion
LLColor3(const LLSD& sd);
@@ -189,7 +189,7 @@ inline LLColor3::LLColor3(const F32 *vec)
# pragma warning( disable : 4996 ) // strncpy teh sux0r
#endif
-inline LLColor3::LLColor3(char* color_string) // takes a string of format "RRGGBB" where RR is hex 00..FF
+inline LLColor3::LLColor3(const char* color_string) // takes a string of format "RRGGBB" where RR is hex 00..FF
{
if (strlen(color_string) < 6) /* Flawfinder: ignore */
{
@@ -199,7 +199,7 @@ inline LLColor3::LLColor3(char* color_string) // takes a string of format "RRGGB
return;
}
- static char tempstr[7]; /* Flawfinder: ignore */
+ char tempstr[7];
strncpy(tempstr,color_string,6); /* Flawfinder: ignore */
tempstr[6] = '\0';
mV[VZ] = (F32)strtol(&tempstr[4],NULL,16)/255.f;