summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2012-05-07 13:34:30 -0700
committerMerov Linden <merov@lindenlab.com>2012-05-07 13:34:30 -0700
commitd04112e73f8bf21bf32e627b19cf1ecc860ac8b8 (patch)
tree91651d7da3c14f7bc1f34d4d24e9e562be104854 /indra/newview
parent2259cef803a8a3d74779ade5153e72f8806a6dab (diff)
parent327970a2169998bc8c01d6c3a88a5b3799b82502 (diff)
Pull from vir/drano
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/lltexturefetch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp
index 35dd1c5123..a25876a1e6 100755
--- a/indra/newview/lltexturefetch.cpp
+++ b/indra/newview/lltexturefetch.cpp
@@ -3675,7 +3675,7 @@ void LLTextureFetchDebugger::scanRefetchList()
if(iter->second.empty())
{
gTextureList.setDebugFetching(iter->first, -1);
- iter = mRefetchList.erase(iter);
+ mRefetchList.erase(iter++); // This is the correct method to "erase and move on" in an std::map
}
else
{