commit | 3d6070aebdbc47c0f4976701f2956debd4502ee3 | [log] [tgz] |
---|---|---|
author | Rob Shearman <rob@codeweavers.com> | Thu Mar 08 11:01:06 2007 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Mar 08 13:50:33 2007 +0100 |
tree | 7c23f2c89719be994e24ccd9c5a7252444d80f45 | |
parent | bdefb46d29a8d5a9cf9f3794648565c5dbfd7908 [diff] [blame] |
ole32: Set output param to NULL in BindCtxImpl_EnumObjectParam.
diff --git a/dlls/ole32/bindctx.c b/dlls/ole32/bindctx.c index 636cdca..7de1986 100644 --- a/dlls/ole32/bindctx.c +++ b/dlls/ole32/bindctx.c
@@ -423,7 +423,11 @@ static HRESULT WINAPI BindCtxImpl_EnumObjectParam(IBindCtx* iface,IEnumString** pszkey) { - FIXME("(%p,%p),stub!\n",iface,pszkey); + TRACE("(%p,%p)\n",iface,pszkey); + + *pszkey = NULL; + + /* not implemented in native either */ return E_NOTIMPL; }