mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msxml3: Load the version 1 typelib before trying to access it.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47214 Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c742a4e18d
commit
7edbbe1ed3
1 changed files with 21 additions and 9 deletions
|
@ -150,31 +150,43 @@ static inline unsigned get_libid_from_tid(tid_t tid)
|
|||
return tid_ids[tid].lib;
|
||||
}
|
||||
|
||||
HRESULT get_typeinfo(enum tid_t tid, ITypeInfo **typeinfo)
|
||||
static HRESULT get_typelib(unsigned lib, ITypeLib **tl)
|
||||
{
|
||||
unsigned lib = get_libid_from_tid(tid);
|
||||
HRESULT hres;
|
||||
|
||||
if(!typelib[lib]) {
|
||||
ITypeLib *tl;
|
||||
|
||||
hres = LoadRegTypeLib(lib_ids[lib].iid, lib_ids[lib].major, 0, LOCALE_SYSTEM_DEFAULT, &tl);
|
||||
hres = LoadRegTypeLib(lib_ids[lib].iid, lib_ids[lib].major, 0, LOCALE_SYSTEM_DEFAULT, tl);
|
||||
if(FAILED(hres)) {
|
||||
ERR("LoadRegTypeLib failed: %08x\n", hres);
|
||||
return hres;
|
||||
}
|
||||
|
||||
if(InterlockedCompareExchangePointer((void**)&typelib[lib], tl, NULL))
|
||||
ITypeLib_Release(tl);
|
||||
if (InterlockedCompareExchangePointer((void**)&typelib[lib], *tl, NULL))
|
||||
ITypeLib_Release(*tl);
|
||||
}
|
||||
|
||||
*tl = typelib[lib];
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT get_typeinfo(enum tid_t tid, ITypeInfo **typeinfo)
|
||||
{
|
||||
unsigned lib = get_libid_from_tid(tid);
|
||||
ITypeLib *typelib;
|
||||
HRESULT hres;
|
||||
|
||||
if (FAILED(hres = get_typelib(lib, &typelib)))
|
||||
return hres;
|
||||
|
||||
if(!typeinfos[tid]) {
|
||||
ITypeInfo *ti;
|
||||
|
||||
hres = ITypeLib_GetTypeInfoOfGuid(typelib[lib], get_riid_from_tid(tid), &ti);
|
||||
hres = ITypeLib_GetTypeInfoOfGuid(typelib, get_riid_from_tid(tid), &ti);
|
||||
if(FAILED(hres)) {
|
||||
/* try harder with typelib from msxml.dll */
|
||||
hres = ITypeLib_GetTypeInfoOfGuid(typelib[LibXml], get_riid_from_tid(tid), &ti);
|
||||
if (FAILED(hres = get_typelib(LibXml, &typelib)))
|
||||
return hres;
|
||||
hres = ITypeLib_GetTypeInfoOfGuid(typelib, get_riid_from_tid(tid), &ti);
|
||||
if(FAILED(hres)) {
|
||||
ERR("GetTypeInfoOfGuid failed: %08x\n", hres);
|
||||
return hres;
|
||||
|
|
Loading…
Reference in a new issue