diff options
author | Armin Weatherwax | 2010-04-05 12:11:08 +0200 |
---|---|---|
committer | Armin Weatherwax | 2010-04-12 17:11:06 +0200 |
commit | 693e7eabe0d824cd8ab243ed3b7540ac32eb5d11 (patch) | |
tree | 3a4c40afc6bc5cec735d03bc8299c9c56f4507af /linden/indra/newview/llvoavatar.cpp | |
parent | fix: don't try in vain to fetch a texture from a host not responding. (diff) | |
download | meta-impy-693e7eabe0d824cd8ab243ed3b7540ac32eb5d11.zip meta-impy-693e7eabe0d824cd8ab243ed3b7540ac32eb5d11.tar.gz meta-impy-693e7eabe0d824cd8ab243ed3b7540ac32eb5d11.tar.bz2 meta-impy-693e7eabe0d824cd8ab243ed3b7540ac32eb5d11.tar.xz |
fix: don't llerr-crash on some bad textures.
Downside: instead of crashing some avatars stay white for some time.
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llvoavatar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llvoavatar.cpp b/linden/indra/newview/llvoavatar.cpp index 868a6f8..2a1462f 100644 --- a/linden/indra/newview/llvoavatar.cpp +++ b/linden/indra/newview/llvoavatar.cpp | |||
@@ -8579,7 +8579,7 @@ void LLVOAvatar::onBakedTextureMasksLoaded( BOOL success, LLViewerImage *src_vi, | |||
8579 | { | 8579 | { |
8580 | if (!aux_src->getData()) | 8580 | if (!aux_src->getData()) |
8581 | { | 8581 | { |
8582 | llerrs << "No auxiliary source data for onBakedTextureMasksLoaded" << llendl; | 8582 | llwarns << "No auxiliary source data for onBakedTextureMasksLoaded" << llendl; |
8583 | return; | 8583 | return; |
8584 | } | 8584 | } |
8585 | 8585 | ||