Commit 13a79378 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Added IUriContainer::GetIUri implementation.

parent 7cb30ca5
......@@ -494,10 +494,16 @@ static HRESULT WINAPI UriContainer_GetIUri(IUriContainer *iface, IUri **ppIUri)
{
URLMoniker *This = impl_from_IUriContainer(iface);
FIXME("(%p)->(%p)\n", This, ppIUri);
TRACE("(%p)->(%p)\n", This, ppIUri);
*ppIUri = NULL;
return S_FALSE;
if(!This->uri) {
*ppIUri = NULL;
return S_FALSE;
}
IUri_AddRef(This->uri);
*ppIUri = This->uri;
return S_OK;
}
static const IUriContainerVtbl UriContainerVtbl = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment