From ee91070330c60ce4a67c2c71396add60cf478c95 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Thu, 28 Apr 2016 11:32:39 +0200 Subject: [PATCH] Possible crash fix in LLPanelPlaceInfo::displayParcelInfo --- indra/newview/fsfloaterplacedetails.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/indra/newview/fsfloaterplacedetails.cpp b/indra/newview/fsfloaterplacedetails.cpp index 315efbfc09..0cd83e9bec 100644 --- a/indra/newview/fsfloaterplacedetails.cpp +++ b/indra/newview/fsfloaterplacedetails.cpp @@ -846,6 +846,11 @@ void FSFloaterPlaceDetails::onSLURLBuilt(std::string& slurl) void FSFloaterPlaceDetails::onLandmarkLoaded(LLLandmark* landmark) { + if (!mPanelLandmarkInfo) + { + return; + } + LLUUID region_id; landmark->getRegionID(region_id); landmark->getGlobalPos(mGlobalPos);