urlmon: Return IClassFactory in get_protocol_handler and fix get_protocol.

This commit is contained in:
Jacek Caban 2006-05-27 22:55:32 +02:00 committed by Alexandre Julliard
parent 4ca7a064fa
commit 21621b2856
3 changed files with 13 additions and 13 deletions

View File

@ -929,7 +929,6 @@ static HRESULT get_callback(IBindCtx *pbc, IBindStatusCallback **callback)
static HRESULT get_protocol(Binding *This, LPCWSTR url)
{
IUnknown *unk = NULL;
IClassFactory *cf = NULL;
HRESULT hres;
@ -945,12 +944,7 @@ static HRESULT get_protocol(Binding *This, LPCWSTR url)
return S_OK;
}
hres = get_protocol_handler(url, &unk);
if(FAILED(hres))
return hres;
hres = IUnknown_QueryInterface(unk, &IID_IClassFactory, (void**)&cf);
IUnknown_Release(unk);
hres = get_protocol_handler(url, &cf);
if(FAILED(hres))
return hres;

View File

@ -130,9 +130,10 @@ IInternetProtocolInfo *get_protocol_info(LPCWSTR url)
return ret;
}
HRESULT get_protocol_handler(LPCWSTR url, IUnknown **ret)
HRESULT get_protocol_handler(LPCWSTR url, IClassFactory **ret)
{
IClassFactory *cf;
IUnknown *unk;
WCHAR schema[64];
DWORD schema_len;
HRESULT hres;
@ -144,12 +145,17 @@ HRESULT get_protocol_handler(LPCWSTR url, IUnknown **ret)
cf = find_name_space(schema);
if(cf) {
hres = IClassFactory_CreateInstance(cf, NULL, &IID_IUnknown, (void**)ret);
if(SUCCEEDED(hres))
return hres;
*ret = cf;
return S_OK;
}
return get_protocol_iface(schema, schema_len, ret);
hres = get_protocol_iface(schema, schema_len, &unk);
if(FAILED(hres))
return hres;
hres = IUnknown_QueryInterface(unk, &IID_IClassFactory, (void**)ret);
IUnknown_Release(unk);
return hres;
}
static HRESULT WINAPI InternetSession_QueryInterface(IInternetSession *iface,

View File

@ -55,7 +55,7 @@ HRESULT UMCreateStreamOnCacheFile(LPCWSTR pszURL, DWORD dwSize, LPWSTR pszFileNa
void UMCloseCacheFileStream(IUMCacheStream *pstr);
IInternetProtocolInfo *get_protocol_info(LPCWSTR url);
HRESULT get_protocol_handler(LPCWSTR url, IUnknown **ret);
HRESULT get_protocol_handler(LPCWSTR url, IClassFactory **ret);
HRESULT start_binding(LPCWSTR url, IBindCtx *pbc, REFIID riid, void **ppv);