summaryrefslogtreecommitdiff
path: root/indra/newview/lltexturefetch.h
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2022-05-10 12:30:59 -0400
committerNat Goodspeed <nat@lindenlab.com>2022-05-10 12:30:59 -0400
commit5bed414ba9418ba8599d3b333eb30e63f62124ae (patch)
tree4123a176422debac4dde6f3bf5ec4df2555f07e9 /indra/newview/lltexturefetch.h
parent4dddb17dfc0dc2c0bdd21263574707a91f2b00a9 (diff)
SL-17219: Fix bug: dangling pointer to destroyed std::string.
Diffstat (limited to 'indra/newview/lltexturefetch.h')
-rw-r--r--indra/newview/lltexturefetch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltexturefetch.h b/indra/newview/lltexturefetch.h
index 0cf9775af2..ff6bb8b505 100644
--- a/indra/newview/lltexturefetch.h
+++ b/indra/newview/lltexturefetch.h
@@ -59,7 +59,7 @@ class LLTextureFetch : public LLWorkerThread
friend class LLTextureFetchWorker;
public:
- static const char* getStateString(S32 state);
+ static std::string getStateString(S32 state);
LLTextureFetch(LLTextureCache* cache, LLImageDecodeThread* imagedecodethread, bool threaded, bool qa_mode);
~LLTextureFetch();