Jinoh Kang (@iamahuman) commented about dlls/windows.media.speech/recognizer.c:
+static HRESULT session_stop_async( IInspectable *invoker ) +{
- return S_OK;
+}
static HRESULT WINAPI session_StopAsync( ISpeechContinuousRecognitionSession *iface, IAsyncAction **action ) {
- FIXME("iface %p, action %p stub!\n", iface, action);
- return E_NOTIMPL;
- struct session *impl = impl_from_ISpeechContinuousRecognitionSession(iface);
- HRESULT hr = S_OK;
- HANDLE thread;
- TRACE("iface %p, action %p.\n", iface, action);
- hr = async_action_create(NULL, session_stop_async, action);
```suggestion:-0+0 if (FAILED(hr = async_action_create(NULL, session_stop_async, action))) return hr; ```