From 4d73062c27ead8bfb50906e38a84b95f1a01caaf Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Tue, 20 Dec 2022 12:13:19 -0500 Subject: [PATCH] Enable WER for better crashpad reporting --- indra/newview/llappviewerwin32.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 4d5e6737660..91fb124d2c2 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -497,13 +497,13 @@ void LLAppViewerWin32::disableWinErrorReporting() { std::string executable_name = gDirUtilp->getExecutableFilename(); - if( S_OK == WerAddExcludedApplication( ll_convert_string_to_wide(executable_name).c_str(), FALSE ) ) + if( S_OK == WerRemoveExcludedApplication( ll_convert_string_to_wide(executable_name).c_str(), FALSE ) ) { - LL_INFOS() << "WerAddExcludedApplication() succeeded for " << executable_name << LL_ENDL; + LL_INFOS() << "WerRemoveExcludedApplication() succeeded for " << executable_name << LL_ENDL; } else { - LL_INFOS() << "WerAddExcludedApplication() failed for " << executable_name << LL_ENDL; + LL_INFOS() << "WerRemoveExcludedApplication() failed for " << executable_name << LL_ENDL; } } -- GitLab