diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-08 02:42:39 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-08 02:56:34 +0300 |
commit | d33328584f331287cce626804e10c962e7c3ce48 (patch) | |
tree | 86079b2bc25d171e4d4a7472e81e19d3e020e9cf /indra/newview/llappearancemgr.cpp | |
parent | bb4967817e5e0251ebcbae861fcd998f22ce0c0c (diff) |
SL-19529 Fix uninitialized variable and calback counter
Diffstat (limited to 'indra/newview/llappearancemgr.cpp')
-rw-r--r-- | indra/newview/llappearancemgr.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index a4dc0c341e..59bf418a00 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -1702,8 +1702,6 @@ void LLAppearanceMgr::shallowCopyCategory(const LLUUID& src_id, const LLUUID& ds { parent_id = gInventory.getRootFolderID(); } - // USES UDP PATH - // D567 needs to carry over thumbnail info gInventory.createNewCategory( parent_id, LLFolderType::FT_NONE, @@ -1713,7 +1711,8 @@ void LLAppearanceMgr::shallowCopyCategory(const LLUUID& src_id, const LLUUID& ds LLAppearanceMgr::getInstance()->shallowCopyCategoryContents(src_id, new_id, cb); gInventory.notifyObservers(); - } + }, + src_cat->getThumbnailUUID() ); } |