aboutsummaryrefslogtreecommitdiff
path: root/src/dynamic.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-12-13 13:34:44 +0000
committerGravatar Sadie Powell2022-12-13 14:17:50 +0000
commit33c08fc8aaf1ba5780a09d6ceaa2351abfd5e964 (patch)
treee5afb388297e20123ca77baaabc24d5ae6f3c49d /src/dynamic.cpp
parentShow the system error message when loading modules fails. (diff)
Deduplicate retrieving error messages on Windows.
Diffstat (limited to 'src/dynamic.cpp')
-rw-r--r--src/dynamic.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/dynamic.cpp b/src/dynamic.cpp
index 5f69820c9..ba75a4a31 100644
--- a/src/dynamic.cpp
+++ b/src/dynamic.cpp
@@ -117,19 +117,14 @@ void* DLLManager::GetSymbol(const char* name) const
void DLLManager::RetrieveLastError()
{
-#if defined _WIN32
- char errmsg[500];
- DWORD dwErrorCode = GetLastError();
- if (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, dwErrorCode, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)errmsg, _countof(errmsg), NULL) == 0)
- sprintf_s(errmsg, _countof(errmsg), "Error code: %u", dwErrorCode);
+#ifdef _WIN32
+ err = GetErrorMessage(GetLastError());
SetLastError(ERROR_SUCCESS);
- err = errmsg;
#else
const char* errmsg = dlerror();
err = errmsg ? errmsg : "Unknown error";
#endif
- std::string::size_type p;
- while ((p = err.find_last_of("\r\n")) != std::string::npos)
- err.erase(p, 1);
+ for (size_t pos = 0; ((pos = err.find_first_of("\r\n", pos)) != std::string::npos); )
+ err[pos] = ' ';
}