Skip to content
Snippets Groups Projects
Commit a31c9071 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

pthread_mutex_t is a CRITICAL_SECTION (not a pointer) on Win32

Partially revert Deuce's commit ea5b359b

This explains the EAccessViolation (stack corruption during sbbs startup) that sysops have reported when using the latest nightly builds.
parent 1fadf55a
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ extern "C" {
#else /* Implemented as Win32 Critical Sections */
typedef intptr_t pthread_mutex_t;
typedef CRITICAL_SECTION pthread_mutex_t;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment