diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-07-12 19:30:33 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-07-12 19:30:33 +0200 |
commit | 2a9aa9be8ac4a97ce766c797aff76abf135bb139 (patch) | |
tree | 03968c25a637fb200740d3bfdc93d33cefc860f1 /src | |
parent | 538a89420955d55cc21d421fe1e961500591479d (diff) |
Clean up error handling in threadengine_win32
Diffstat (limited to 'src')
-rw-r--r-- | src/threadengines/threadengine_win32.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp index 529e24a29..ea37892f8 100644 --- a/src/threadengines/threadengine_win32.cpp +++ b/src/threadengines/threadengine_win32.cpp @@ -35,17 +35,11 @@ void ThreadEngine::Start(Thread* thread) if (data->handle == NULL) { + DWORD lasterr = GetLastError(); thread->state = NULL; delete data; - std::string err = "Unable to create new thread: "; -#ifdef _WIN32 - CHAR errdetail[100]; - FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, 0, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), errdetail, 100, 0); + std::string err = "Unable to create new thread: " + ConvToStr(lasterr); SetLastError(ERROR_SUCCESS); - err += errdetail; -#else - err += dlerror(); -#endif throw CoreException(err); } } |