diff options
| author | Merov Linden <merov@lindenlab.com> | 2012-05-07 13:34:30 -0700 | 
|---|---|---|
| committer | Merov Linden <merov@lindenlab.com> | 2012-05-07 13:34:30 -0700 | 
| commit | d04112e73f8bf21bf32e627b19cf1ecc860ac8b8 (patch) | |
| tree | 91651d7da3c14f7bc1f34d4d24e9e562be104854 | |
| parent | 2259cef803a8a3d74779ade5153e72f8806a6dab (diff) | |
| parent | 327970a2169998bc8c01d6c3a88a5b3799b82502 (diff) | |
Pull from vir/drano
| -rwxr-xr-x | indra/newview/lltexturefetch.cpp | 2 | 
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  		{ | 
