This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, ocean-city
Date 2008-09-26.22:27:23
SpamBayes Score 3.865406e-05
Marked as misclassified No
Message-id <1222468044.62.0.634172977678.issue3947@psf.upfronthosting.co.za>
In-reply-to
Content
I think I have a beginning of an explanation:
libssl.dll implements a DllMain function, whose DLL_THREAD_DETACH event 
calls ERR_remove_state. 
At this time, the (posix) thread function has already exited; 
pthread::exit() was already called the pthread object has been deleted.

And the same (win32) thread will call sem_wait()... and maybe access 
freed resources.

Linking against the static library does not have this problem.
History
Date User Action Args
2008-09-26 22:27:24amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, ocean-city
2008-09-26 22:27:24amaury.forgeotdarcsetmessageid: <1222468044.62.0.634172977678.issue3947@psf.upfronthosting.co.za>
2008-09-26 22:27:24amaury.forgeotdarclinkissue3947 messages
2008-09-26 22:27:23amaury.forgeotdarccreate