From 7d726d1b4aa3e572c9a52788ad48f5807560be8d Mon Sep 17 00:00:00 2001
From: Mnikolenko Productengine <mnikolenko@productengine.com>
Date: Thu, 27 May 2021 02:17:39 +0300
Subject: [PATCH] SL-15319 FIXED Crash in
 LLFloaterCreateLandmark::onCancelClicked

---
 indra/newview/llfloatercreatelandmark.cpp | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/indra/newview/llfloatercreatelandmark.cpp b/indra/newview/llfloatercreatelandmark.cpp
index db84a2ac76f..eb93a6a75ad 100644
--- a/indra/newview/llfloatercreatelandmark.cpp
+++ b/indra/newview/llfloatercreatelandmark.cpp
@@ -231,7 +231,11 @@ void LLFloaterCreateLandmark::folderCreatedCallback(LLUUID folder_id)
 void LLFloaterCreateLandmark::onSaveClicked()
 {
 	if (mItem.isNull())
+	{
+		closeFloater();
 		return;
+	}
+		
 
 	std::string current_title_value = mLandmarkTitleEditor->getText();
 	std::string item_title_value = mItem->getName();
@@ -282,8 +286,11 @@ void LLFloaterCreateLandmark::onSaveClicked()
 
 void LLFloaterCreateLandmark::onCancelClicked()
 {
-	LLUUID item_id = mItem->getUUID();
-	remove_inventory_item(item_id, NULL);
+	if (!mItem.isNull())
+	{
+		LLUUID item_id = mItem->getUUID();
+		remove_inventory_item(item_id, NULL);
+	}
 	closeFloater();
 }
 
-- 
GitLab