diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp
index 16290f8301470569e5a1eec0a6c90e781c7c33eb..ee9fe7df47a9ac2ecfcc110bc65c71f605f33bc1 100644
--- a/indra/newview/llfasttimerview.cpp
+++ b/indra/newview/llfasttimerview.cpp
@@ -1112,7 +1112,7 @@ void LLFastTimerView::drawLineGraph()
 				cur_max_calls = llmax(cur_max_calls, calls);
 			}
 			F32 x = mGraphRect.mRight - j * (F32)(mGraphRect.getWidth())/(mRecording.getNumRecordedPeriods()-1);
-			F32 y;
+			F32 y = 0.f;
 			switch(mDisplayType)
 {
 			case DISPLAY_TIME:
diff --git a/indra/newview/llinventorygallerymenu.cpp b/indra/newview/llinventorygallerymenu.cpp
index bfa87a9834ddbef7ae30da87a1ddab2d5cc7b55c..e0bcd84a52625493b85bd53a5d1dc06785272d25 100644
--- a/indra/newview/llinventorygallerymenu.cpp
+++ b/indra/newview/llinventorygallerymenu.cpp
@@ -243,7 +243,7 @@ void LLInventoryGalleryContextMenu::doToSelected(const LLSD& userdata)
         {
             LLVector3d global_pos;
             landmark->getGlobalPos(global_pos);
-            boost::function<void(std::string& slurl)> copy_slurl_to_clipboard_cb = [](const std::string& slurl)
+            boost::function<void(std::string& slurl)> copy_slurl_to_clipboard_cb = [](std::string& slurl)
             {
                gViewerWindow->getWindow()->copyTextToClipboard(utf8str_to_wstring(slurl));
                LLSD args;
diff --git a/indra/newview/llmodelpreview.cpp b/indra/newview/llmodelpreview.cpp
index 834ad02aaa4727dd849c3b1adcf0226c6ddbe6f0..1bed4977f1ff5c56434498bdda75fad7054bdb4a 100644
--- a/indra/newview/llmodelpreview.cpp
+++ b/indra/newview/llmodelpreview.cpp
@@ -2759,6 +2759,10 @@ void LLModelPreview::genBuffers(S32 lod, bool include_skin_weights)
             m = m.inverse().transpose();
             mat_normal.loadu(m.m);
         }
+        else
+        {
+            mat_normal.setIdentity();
+        }
 
         S32 num_faces = mdl->getNumVolumeFaces();
         for (S32 i = 0; i < num_faces; ++i)