diff options
| -rw-r--r-- | indra/newview/llviewerassetupload.cpp | 9 | ||||
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 1 | 
2 files changed, 10 insertions, 0 deletions
| diff --git a/indra/newview/llviewerassetupload.cpp b/indra/newview/llviewerassetupload.cpp index a320f07a9f..7c6721cad9 100644 --- a/indra/newview/llviewerassetupload.cpp +++ b/indra/newview/llviewerassetupload.cpp @@ -488,6 +488,14 @@ LLSD LLNewFileResourceUploadInfo::exportTempFile()  						errorLabel = "";  						error = false;  					} +					else +					{ +						errorMessage = "Failed saving temporary animation file"; +					} +				} +				else +				{ +					errorMessage = "Failed reading animation file";  				}  			}  		} @@ -908,6 +916,7 @@ void LLViewerAssetUpload::HandleUploadError(LLCore::HttpStatus status, LLSD &res      {          args["FILE"] = uploadInfo->getDisplayName();          args["REASON"] = reason; +        args["ERROR"] = reason;      }      LLNotificationsUtil::add(label, args); diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 487730e209..b1f04601fd 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -6145,6 +6145,7 @@ LLJoint *LLVOAvatar::getJoint( const std::string &name )  	LLJoint* jointp = NULL;  	if (iter == mJointMap.end() || iter->second == NULL) +	{  		joint_alias_map_t::const_iterator alias_iter = mJointAliasMap.find(name);  		std::string canonical_name;  		if (alias_iter != mJointAliasMap.end()) | 
