
16 Dec
2005
16 Dec
'05
10:43 a.m.
Turns out the AV only occurs with MSVC 7.1. With VC 8.0 Express I was able to diagnose the true error: PostQueuedCompletionStatus is failing with ERROR_NO_SYSTEM_RESOURCES, however I was not checking the return value. My bad :*)
Here is a diff to fix this (against CVS version of asio). With this change the test runs successfully to completion.
Wow that was fast. I shouldn't have used catch(...), but I was being lazy. See laziness never pays. :) Thanks, Christopher