Skip to content

Commit

Permalink
Fix MSVC compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowNinja committed Mar 27, 2015
1 parent e680d49 commit 3d53c90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/debug.cpp
Expand Up @@ -388,6 +388,9 @@ long WINAPI Win32ExceptionHandler(struct _EXCEPTION_POINTERS *pExceptInfo)

std::string dumpfile = porting::path_user + DIR_DELIM PROJECT_NAME ".dmp";

std::string version_str(PROJECT_NAME " ");
version_str += g_version_hash;

HANDLE hFile = CreateFileA(dumpfile.c_str(), GENERIC_WRITE,
FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile == INVALID_HANDLE_VALUE)
Expand All @@ -400,9 +403,6 @@ long WINAPI Win32ExceptionHandler(struct _EXCEPTION_POINTERS *pExceptInfo)
mdei.ExceptionPointers = pExceptInfo;
mdei.ThreadId = GetCurrentThreadId();

std::string version_str(PROJECT_NAME " ");
version_str += g_version_hash;

mdus.Type = CommentStreamA;
mdus.BufferSize = version_str.size();
mdus.Buffer = (PVOID)version_str.c_str();
Expand Down

0 comments on commit 3d53c90

Please sign in to comment.