windows.media.speech: Add a missing trace to async_operation_create.

Signed-off-by: Bernhard Kölbl <besentv@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Bernhard Kölbl 2022-04-25 12:18:14 +02:00 committed by Alexandre Julliard
parent 7bf7340eb6
commit fc6857c432
1 changed files with 2 additions and 0 deletions

View File

@ -367,6 +367,8 @@ HRESULT async_operation_create( const GUID *iid, IInspectable *invoker, async_op
{
struct async_operation *impl;
TRACE("iid %s, invoker %p, callback %p, out %p.\n", debugstr_guid(iid), invoker, callback, out);
*out = NULL;
if (!(impl = calloc(1, sizeof(*impl)))) return E_OUTOFMEMORY;
impl->IAsyncOperation_IInspectable_iface.lpVtbl = &async_operation_vtbl;