Calling cpal's safe API on Windows can crash the process with STATUS_ACCESS_VIOLATION rather than returning an error.
Symptom
In a test binary run with --test-threads=1, a test that enumerates devices passes when run alone, but the process faults when other tests run in the same binary. The fault lands on an arbitrary later test and moves between runs. Two stacks from cdb, both faulting at +0x19d — the vtable read:
INVALID_POINTER_READ_c0000005
windows::Win32::Media::Audio::IMMDeviceEnumerator::GetDefaultAudioEndpoint
cpal::host::wasapi::device::default_device
cpal::host::wasapi::device::default_input_device
cpal::traits::HostTrait::default_input_device
INVALID_POINTER_READ_c0000005
windows::Win32::Media::Audio::IMMDeviceEnumerator::EnumAudioEndpoints
cpal::host::wasapi::device::Devices::new
cpal::host::wasapi::impl$1::devices
cpal::traits::HostTrait::input_devices
Observed on windows-latest GitHub Actions runners, cpal 0.17.3, and the same code is present on main.
Diagnosis
ENUMERATOR in src/host/wasapi/device.rs is a process-wide OnceLock<Enumerator>, created on whichever thread calls first, with unsafe impl Send + Sync. COM is initialised as COINIT_APARTMENTTHREADED through a thread-local in src/host/com.rs whose Drop calls CoUninitialize.
An STA belongs to the thread that created it. So once the first thread to touch cpal exits, the cached interface pointer is dangling, and every later caller reads a dead vtable. The comment at the initialisation site states the assumption that does not hold:
// COM initialization is thread local, but we only need to have COM initialized in the
// thread we create the objects in
com::com_initialized();
This is most visible where audio work happens on short-lived threads: whichever one touches cpal first owns the enumerator, and its exit breaks device access for the rest of the process.
Ruled out
CoCreateInstance failing is not a fit — that would panic at the .unwrap(), not fault at a vtable read.
- Absent audio endpoints is not a fit either — that surfaces as an HRESULT from
GetDefaultAudioEndpoint / EnumAudioEndpoints, not an invalid dereference.
Two affected paths
Making ENUMERATOR a thread_local fixes enumeration, but is not sufficient. default_device_monitor() clones the enumerator into DefaultDeviceMonitor, which is unsafe impl Send + Sync and stored in Stream. Its Drop calls UnregisterEndpointNotificationCallback, and carries this comment:
// Ensure COM is initialised on this thread before making COM calls. Drop can run on
// any thread (e.g. the audio run thread), which may not have called CoInitialize.
Initialising COM on the dropping thread does not help if the apartment that owns the object has gone. That path shares an apartment-bound pointer regardless of what the enumeration path does.
Possibly related earlier reports
#517, #539 and #596 all report this exit code and were closed as ASIO issues. #517 in particular describes "enumerate devices in another thread, after the thread returns, I get access violation", and its workaround was to spawn a thread and join it — which on the WASAPI path is precisely what destroys the apartment. It may be worth re-reading those with this in mind.
History
The cached enumerator dates to e8a0537 (Jun 2019). DefaultDeviceMonitor arrived with #1183 (May 2026), which widened the exposure to a second path.
Possible fixes
Listing these with tradeoffs rather than proposing one, since the ASIO and winit constraints are yours:
- Per-thread enumerator (
thread_local) — simple; fixes enumeration; leaves the monitor path.
- No caching, create per call — same coverage as above; costs a
CoCreateInstance per call.
- A dedicated long-lived COM thread owning the enumerator and servicing calls — covers both paths, keeps STA, costs one parked thread.
- Marshal via the Global Interface Table — canonical COM answer; the most machinery.
- MTA — would solve it outright, but conflicts with the deliberate
COINIT_APARTMENTTHREADED choice for ASIO and winit.
I have a branch with the per-thread change if it is useful as a starting point, but since it only closes the first path I have not opened it as a PR.
Open question
Does UnregisterEndpointNotificationCallback require the same IMMDeviceEnumerator instance that registered? The documentation reads that way. If so, it rules out "create a fresh enumerator at drop time" as a fix for the monitor path.
Minor, separate
CoCreateInstance(...).unwrap() in the enumerator initialiser lets a safe API abort the process on failure.
Calling cpal's safe API on Windows can crash the process with
STATUS_ACCESS_VIOLATIONrather than returning an error.Symptom
In a test binary run with
--test-threads=1, a test that enumerates devices passes when run alone, but the process faults when other tests run in the same binary. The fault lands on an arbitrary later test and moves between runs. Two stacks from cdb, both faulting at+0x19d— the vtable read:Observed on
windows-latestGitHub Actions runners, cpal 0.17.3, and the same code is present onmain.Diagnosis
ENUMERATORinsrc/host/wasapi/device.rsis a process-wideOnceLock<Enumerator>, created on whichever thread calls first, withunsafe impl Send + Sync. COM is initialised asCOINIT_APARTMENTTHREADEDthrough a thread-local insrc/host/com.rswhoseDropcallsCoUninitialize.An STA belongs to the thread that created it. So once the first thread to touch cpal exits, the cached interface pointer is dangling, and every later caller reads a dead vtable. The comment at the initialisation site states the assumption that does not hold:
This is most visible where audio work happens on short-lived threads: whichever one touches cpal first owns the enumerator, and its exit breaks device access for the rest of the process.
Ruled out
CoCreateInstancefailing is not a fit — that would panic at the.unwrap(), not fault at a vtable read.GetDefaultAudioEndpoint/EnumAudioEndpoints, not an invalid dereference.Two affected paths
Making
ENUMERATORathread_localfixes enumeration, but is not sufficient.default_device_monitor()clones the enumerator intoDefaultDeviceMonitor, which isunsafe impl Send + Syncand stored inStream. ItsDropcallsUnregisterEndpointNotificationCallback, and carries this comment:Initialising COM on the dropping thread does not help if the apartment that owns the object has gone. That path shares an apartment-bound pointer regardless of what the enumeration path does.
Possibly related earlier reports
#517, #539 and #596 all report this exit code and were closed as ASIO issues. #517 in particular describes "enumerate devices in another thread, after the thread returns, I get access violation", and its workaround was to spawn a thread and join it — which on the WASAPI path is precisely what destroys the apartment. It may be worth re-reading those with this in mind.
History
The cached enumerator dates to
e8a0537(Jun 2019).DefaultDeviceMonitorarrived with #1183 (May 2026), which widened the exposure to a second path.Possible fixes
Listing these with tradeoffs rather than proposing one, since the ASIO and winit constraints are yours:
thread_local) — simple; fixes enumeration; leaves the monitor path.CoCreateInstanceper call.COINIT_APARTMENTTHREADEDchoice for ASIO and winit.I have a branch with the per-thread change if it is useful as a starting point, but since it only closes the first path I have not opened it as a PR.
Open question
Does
UnregisterEndpointNotificationCallbackrequire the sameIMMDeviceEnumeratorinstance that registered? The documentation reads that way. If so, it rules out "create a fresh enumerator at drop time" as a fix for the monitor path.Minor, separate
CoCreateInstance(...).unwrap()in the enumerator initialiser lets a safe API abort the process on failure.