diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-05-18 13:10:26 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-05-18 13:10:26 -0400 |
commit | e2544fabe5f63201ca11102aa9b4266cb62211bd (patch) | |
tree | d7bf8c8dcbfdafe4607fe0415803943e8adbf0c1 /indra/newview/llattachmentsmgr.cpp | |
parent | 618e10e82106779d81e63a248ce7c168a4baaea3 (diff) |
MAINT-5222 WIP - checks for app shutting down a couple of places.
Diffstat (limited to 'indra/newview/llattachmentsmgr.cpp')
-rwxr-xr-x | indra/newview/llattachmentsmgr.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llattachmentsmgr.cpp b/indra/newview/llattachmentsmgr.cpp index 799a25ddc9..2a137cc39b 100755 --- a/indra/newview/llattachmentsmgr.cpp +++ b/indra/newview/llattachmentsmgr.cpp @@ -99,6 +99,11 @@ void LLAttachmentsMgr::onIdle() return; } + if (LLApp::isExiting()) + { + return; + } + requestPendingAttachments(); linkRecentlyArrivedAttachments(); |