Skip to content
This repository has been archived by the owner on Oct 5, 2020. It is now read-only.

Commit

Permalink
Fix for 32bit build
Browse files Browse the repository at this point in the history
  • Loading branch information
Taras Kushnir authored and Taras Kushnir committed Jun 2, 2018
1 parent 02f2976 commit 5668fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chillout/windows/windowscrashhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ namespace Debug {
{
// http://groups.google.com/group/crashrpt/browse_thread/thread/a1dbcc56acb58b27/fbd0151dd8e26daf?lnk=gst&q=stack+overflow#fbd0151dd8e26daf
HANDLE thread = ::CreateThread(0, 0,
&StackOverflowThreadFunction, pExceptionPtrs, 0, 0);
&StackOverflowThreadFunction, pExPtrs, 0, 0);
DWORD dwMilliseconds = 1000 * 30; // 30 seconds
::WaitForSingleObject(thread, dwMilliseconds);
::CloseHandle(thread);
Expand Down

0 comments on commit 5668fd3

Please sign in to comment.