diff options
author | brad kittenbrink <brad@lindenlab.com> | 2009-07-30 16:59:45 -0700 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2009-07-30 16:59:45 -0700 |
commit | 26817149c4646bf0d1c51e30b2eb29e1d52164b6 (patch) | |
tree | f96edd0e88e0c20456d4fdf82e921e3f46624db2 /indra | |
parent | 9021a536e509571e7a53643275d4400242f8c633 (diff) |
partial work on DEV-35406:crash on shutdown.
this doesn't actually fix anything yet though.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llappviewer.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 17984b8eae..1c3c79db3d 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1162,7 +1162,9 @@ bool LLAppViewer::cleanup() apr_status_t rv = apr_dso_sym((apr_dso_handle_sym_t*)&ll_plugin_stop_func, *i, "ll_plugin_stop"); ll_plugin_stop_func(); - rv = apr_dso_unload(*i); + // *NOTE - disabled unloading as partial solution to DEV-35406 crash on shutdown + //rv = apr_dso_unload(*i); + (void)rv; } mPlugins.clear(); |