diff options
author | Stinson Linden <stinson@lindenlab.com> | 2014-04-23 01:57:24 +0100 |
---|---|---|
committer | Stinson Linden <stinson@lindenlab.com> | 2014-04-23 01:57:24 +0100 |
commit | 041f267d6a5a4c6251a113accdf0003301beb6a9 (patch) | |
tree | ce1db040e6a2f36fefded5d813d64c0604fcf213 /indra/newview/llappviewerwin32.cpp | |
parent | d0ef02c23a7a37c8c9bfe3a86bae88bb811fc9fe (diff) |
MAINT-4009: Adding LLWinDebug::cleanup() to ensure memory is freed at app end.
Diffstat (limited to 'indra/newview/llappviewerwin32.cpp')
-rw-r--r-- | indra/newview/llappviewerwin32.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 06f081e920..a1b4fd1035 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -542,6 +542,10 @@ bool LLAppViewerWin32::cleanup() gDXHardware.cleanup(); +#ifndef LL_RELEASE_FOR_DOWNLOAD + LLWinDebug::instance().cleanup(); +#endif + return result; } |