http://bugs.winehq.org/show_bug.cgi?id=35076
Bug #: 35076 Summary: PSPad installer has a non-fatal crash Product: Wine Version: 1.7.8 Platform: x86 URL: http://www.pspad.com OS/Version: Linux Status: NEW Keywords: download Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: austinenglish@gmail.com Classification: Unclassified
Created attachment 46783 --> http://bugs.winehq.org/attachment.cgi?id=46783 terminal output/backtrace
Noticed while checking on bug 12995.
(@Focht, this is on my Fedora machine, not the broken gentoo one :))
[austin@localhost ~]$ wine --version wine-1.7.8 [austin@localhost ~]$ sha1sum pspad457inst_en.exe e0ed70b5788e2f2d7b13428b042755c44c5112bf pspad457inst_en.exe [austin@localhost ~]$ du -h pspad457inst_en.exe 4.5M pspad457inst_en.exe
http://bugs.winehq.org/show_bug.cgi?id=35076
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Installer
--- Comment #1 from Austin English austinenglish@gmail.com 2013-12-07 16:02:52 CST --- Based on the terminal output, I tried native ie7, but that didn't help. There are a couple wbem fixme's right before: fixme:wbemdisp:locator_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:wbemdisp:locator_ConnectServer 0x129618, L".", L"root\cimv2", L"", 0x1297dc, L"", L"", 0x00000000, (nil), 0x30f9e0 fixme:wbemdisp:locator_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented
that could be related.
http://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net Component|-unknown |wmi&wbemprox Summary|PSPad installer has a |PSPad 4.5.7 installer |non-fatal crash |helper tool | |"wajam_validate.exe" fails | |due to | |SWbemLocator::ConnectServer | |being a stub
--- Comment #2 from Anastasius Focht focht@gmx.net 2013-12-07 17:40:01 CST --- Hello folks,
confirming.
The installer extracts a helper binary "wajam_validate.exe" (compressed with UPX) to a temp folder and runs it:
--- snip --- ... 0037:Call KERNEL32.CreateProcessW(003326e4 L"C:\users\focht\Temp\nsva899.tmp\\wajam_validate.exe",0012d8b0 L"C:\users\focht\Temp\nsva899.tmp\wajam_validate.exe",00000000,00000000,00000001,00000000,00000000,00000000,003326a0,00332ba4) ret=7ed031dd ... 0039:Call KERNEL32.__wine_kernel_init() ret=7bc599cc 0037:Ret KERNEL32.CreateProcessW() retval=00000001 ret=7ed031dd ... 0039:fixme:wbemdisp:locator_ConnectServer 0x139700, L".", L"root\cimv2", L"", 0x1398e4, L"", L"", 0x00000000, (nil), 0x30f9a0 0039:fixme:wbemdisp:locator_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented 0039:Call msvcrt._CxxThrowException(0030f960,00406478) ret=0040508a 0039:Call KERNEL32.RaiseException(e06d7363,00000001,00000003,0030f8f4) ret=7ecd42b1 0039:trace:seh:raise_exception code=e06d7363 flags=1 addr=0x7b83a8ef ip=7b83a8ef tid=0039 0039:trace:seh:raise_exception info[0]=19930520 0039:trace:seh:raise_exception info[1]=0030f960 0039:trace:seh:raise_exception info[2]=00406478 0039:trace:seh:raise_exception eax=7b826921 ebx=7b8ba000 ecx=00406478 edx=0030f850 esi=0030f8f0 edi=0030f8b0 0039:trace:seh:raise_exception ebp=0030f888 esp=0030f824 cs=0023 ds=002b es=002b fs=0063 gs=006b flags=00000287 0039:trace:seh:call_stack_handlers calling handler at 0x405306 code=e06d7363 flags=1 0039:trace:seh:call_stack_handlers handler at 0x405306 returned 1 0039:trace:seh:call_stack_handlers calling handler at 0x405223 code=e06d7363 flags=1 0039:trace:seh:call_stack_handlers handler at 0x405223 returned 1 0039:trace:seh:call_stack_handlers calling handler at 0x404e62 code=e06d7363 flags=1 ... wine: Unhandled exception 0xe06d7363 in thread 39 at address 0x7b83a8ef (thread 0039), starting debugger... --- snip ---
Debugging session:
--- snip --- Wine-dbg>bt Backtrace: =>0 0x7e41532c locator_ConnectServer(iface=0x12aee8, strServer=".", strNamespace="root\cimv2", strUser="", strPassword="", strLocale="", strAuthority="", iSecurityFlags=0, objWbemNamedValueSet=(nil), objWbemServices=0x30f9a0) [/home/focht/projects/wine/wine-git/dlls/wbemdisp/locator.c:225] in wbemdisp (0x0030f9b4) 1 0x00402427 in wajam_validate (+0x2426) (0x0030fb04) 2 0x00402908 in wajam_validate (+0x2907) (0x0032fb48) 3 0x00402a8d in wajam_validate (+0x2a8c) (0x0033fdac) 4 0x00404dd5 in wajam_validate (+0x4dd4) (0x0033fe20) --- snip ---
The query for IID_ISupportErrorInfo before the throw() is just the result of earlier failure.
Source: http://source.winehq.org/git/wine.git/blob/8c4e9ba4cfa4e1976a84dcb8bdfcf26b4...
--- snip --- 214 static HRESULT WINAPI locator_ConnectServer( 215 ISWbemLocator *iface, 216 BSTR strServer, 217 BSTR strNamespace, 218 BSTR strUser, 219 BSTR strPassword, 220 BSTR strLocale, 221 BSTR strAuthority, 222 LONG iSecurityFlags, 223 IDispatch *objWbemNamedValueSet, 224 ISWbemServices **objWbemServices ) 225 { 226 FIXME( "%p, %s, %s, %s, %p, %s, %s, 0x%08x, %p, %p\n", iface, debugstr_w(strServer), 227 debugstr_w(strNamespace), debugstr_w(strUser), strPassword, debugstr_w(strLocale), 228 debugstr_w(strAuthority), iSecurityFlags, objWbemNamedValueSet, objWbemServices ); 229 return E_NOTIMPL; 230 } --- snip ---
$ sha1sum pspad457inst_en.exe e0ed70b5788e2f2d7b13428b042755c44c5112bf pspad457inst_en.exe
$ du -sh pspad457inst_en.exe 4.5M pspad457inst_en.exe
$ wine --version wine-1.7.8-128-g37460b6
Regards
http://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|PSPad 4.5.7 installer |'wajam_validate.exe' tool |helper tool |shipped with multiple |"wajam_validate.exe" fails |installers fails due to |due to |SWbemLocator::ConnectServer |SWbemLocator::ConnectServer |being a stub (PSPad 4.5.7, |being a stub |Nitro PDF Professional | |6.2.x)
--- Comment #3 from Anastasius Focht focht@gmx.net --- Hello folks,
Nitro PDF Professional 6.2.0.44 installer is also affected by this (ships same 'wajam_validate.exe' tool).
--- snip --- $ upx -d wajam_validate.exe
$ strings wajam_validate.exe ... Select * from Win32_NetworkAdapter Select * from Win32_NetworkAdapter Where NetEnabled=TRUE root\cimv2 AdapterTypeID MACAddress %02X www.wajam.com /install/valid?v=1&unique_id= ... --- snip ---
$ sha1sum nitro_pdf_professional6_ocr.exe 8f60655fd6e534766697e4fc88f0b39ed3c18353 nitro_pdf_professional6_ocr.exe
$ du -sh nitro_pdf_professional6_ocr.exe 44M nitro_pdf_professional6_ocr.exe
$ wine --version wine-1.7.9-183-g919e620
Regards
http://bugs.winehq.org/show_bug.cgi?id=35076
--- Comment #4 from Anastasius Focht focht@gmx.net --- Hello folks,
found another app bundling this garbage: 'PaintRibbon 1.x'
Download: http://download.cnet.com/PaintRibbon/3000-2191_4-10958115.html?part=dl-10119...
--- snip --- $ WINEDEBUG=+tid,+seh,+relay,+mshtml,+wininet wine ./paintribbonsetup.exe
log.txt 2>&1
... 0033:Call KERNEL32.CreateProcessW(003326e4 L"C:\users\focht\Temp\nsob5ea.tmp\\wajam_validate.exe",0012e328 L"C:\users\focht\Temp\nsob5ea.tmp\wajam_validate.exe",00000000,00000000,00000001,00000000,00000000,00000000,003326a0,00332ba4) ret=7ed371b2 ... 0035:fixme:wbemdisp:locator_ConnectServer 0x13a1b0, L".", L"root\cimv2", L"", 0x13a394, L"", L"", 0x00000000, (nil), 0x30f9a0 0035:fixme:wbemdisp:locator_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented 0035:Call msvcrt._CxxThrowException(0030f960,00406478) ret=0040508a 0035:Call KERNEL32.RaiseException(e06d7363,00000001,00000003,0030f8f4) ret=7ed08441 0035:trace:seh:raise_exception code=e06d7363 flags=1 addr=0x7b83a913 ip=7b83a913 tid=0035 0035:trace:seh:raise_exception info[0]=19930520 0035:trace:seh:raise_exception info[1]=0030f960 0035:trace:seh:raise_exception info[2]=00406478 0035:trace:seh:raise_exception eax=7b826989 ebx=7b8ba000 ecx=00406478 edx=0030f850 esi=0030f8f0 edi=0030f8b0 0035:trace:seh:raise_exception ebp=0030f888 esp=0030f824 cs=0023 ds=002b es=002b fs=0063 gs=006b flags=00000287 --- snip ---
$ sha1sum paintribbonsetup.exe d74c6a5ddca61c0f62019db14657993cb552daf2 paintribbonsetup.exe
$ du -sh paintribbonsetup.exe 1.7M paintribbonsetup.exe
$ wine --version wine-1.7.10-343-g770d09d
Regards
https://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |hew@ubuntu.com
--- Comment #5 from Anastasius Focht focht@gmx.net --- *** Bug 14798 has been marked as a duplicate of this bug. ***
https://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|'wajam_validate.exe' tool |Multiple |shipped with multiple |applications/installers |installers fails due to |fails due to |SWbemLocator::ConnectServer |SWbemLocator::ConnectServer |being a stub (PSPad 4.5.7, |being a stub (PSPad 4.5.7, |Nitro PDF Professional |Nitro PDF Professional |6.2.x) |6.2.x, eTax 2008)
--- Comment #6 from Anastasius Focht focht@gmx.net --- Hello folks,
still present, refining summary again to collect dupes here.
$ wine --version wine-1.7.13-118-g0eb6265
Regards
https://bugs.winehq.org/show_bug.cgi?id=35076
--- Comment #7 from Anastasius Focht focht@gmx.net --- Hello folks,
adding another app: 'Samsung Magician v4.0'
Download: http://orange.micrologik.fr/Progs/SSD/Samsung_Magician_Setup_v4.0.exe
--- snip --- $ WINEDEBUG=+tid,+seh,+tlb,+wbemprox,+wbemdisp,+ole,+variant wine ./Samsung_Magician_Setup_v4.0.exe >>log.txt 2>&1 ... 003b:trace:ole:DispCallFunc (0x13d0b8, 28, 4, 10, 9, 0x14dd74, 0x14dd50, 0x33f5c0 (vt=10)) 003b:trace:ole:DispCallFunc arg 0: type 8 003b:trace:ole:dump_Variant 0x681db8->{VT_BSTR,(null)} 003b:trace:ole:DispCallFunc arg 1: type 8 003b:trace:ole:dump_Variant 0x681da8->{VT_BSTR,L"root\CIMV2"} 003b:trace:ole:DispCallFunc arg 2: type 8 003b:trace:ole:dump_Variant 0x681d98->{VT_BSTR,(null)} 003b:trace:ole:DispCallFunc arg 3: type 8 003b:trace:ole:dump_Variant 0x681d88->{VT_BSTR,(null)} 003b:trace:ole:DispCallFunc arg 4: type 8 003b:trace:ole:dump_Variant 0x14dc70->{VT_BSTR,L""} 003b:trace:ole:DispCallFunc arg 5: type 8 003b:trace:ole:dump_Variant 0x14dc80->{VT_BSTR,L""} 003b:trace:ole:DispCallFunc arg 6: type 3 003b:trace:ole:dump_Variant 0x14dc90->{VT_I4,0} 003b:trace:ole:DispCallFunc arg 7: type 9 003b:trace:ole:dump_Variant 0x14dca0->{VT_DISPATCH,(nil)} 003b:trace:ole:DispCallFunc arg 8: type 16393 003b:trace:ole:dump_Variant 0x14dcb0->{VT_DISPATCH|VT_BYREF,0x33f5b0} 003b:fixme:wbemdisp:locator_ConnectServer 0x13d0b8, (null), L"root\CIMV2", (null), (nil), L"", L"", 0x00000000, (nil), 0x33f5b0 003b:trace:ole:DispCallFunc retval: 0x33f5c0->{VT_ERROR} 003b:trace:variant:VariantClear (0x14dc30->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dcc0->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dc40->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dcd0->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dc50->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dce0->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dc60->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dcf0->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dc70->(VT_BSTR)) 003b:trace:variant:VariantClear (0x14dd00->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dc80->(VT_BSTR)) 003b:trace:variant:VariantClear (0x14dd10->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dc90->(VT_I4)) 003b:trace:variant:VariantClear (0x14dd20->(VT_EMPTY)) 003b:trace:variant:VariantClear (0x14dca0->(VT_DISPATCH)) 003b:trace:variant:VariantClear (0x14dd30->(VT_EMPTY)) 003b:trace:ole:ITypeInfo_fnInvoke [retval] value: 0x14dcb0->{VT_DISPATCH|VT_BYREF,0x33f5b0} 003b:trace:variant:VariantInit (0x603210) 003b:trace:variant:VariantCopyInd (0x603210->(VT_EMPTY),0x14dcb0->(VT_DISPATCH|VT_BYREF)) 003b:trace:variant:VariantClear (0x603210->(VT_EMPTY)) 003b:trace:variant:VariantCopyInd returning 0x00000000, 0x603210->(VT_DISPATCH) 003b:trace:variant:VARIANT_ClearInd (0x14dcb0->(VT_DISPATCH|VT_BYREF)) 003b:trace:variant:VariantClear (0x14dd40->(VT_EMPTY)) 003b:warn:ole:ITypeInfo_fnInvoke invoked function failed with error 0x80004001 --- snip ---
$ sha1sum Samsung_Magician_Setup_v4.0.exe e7335e889eb6868a6407a827bb4e0a6f6e1b4c50 Samsung_Magician_Setup_v4.0.exe
$ du -sh Samsung_Magician_Setup_v4.0.exe 8.0M Samsung_Magician_Setup_v4.0.exe
$ wine --version wine-1.7.14-165-g77bd74f
Regards
https://bugs.winehq.org/show_bug.cgi?id=35076
Béla Gyebrószki gyebro69@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |gyebro69@gmail.com
--- Comment #8 from Béla Gyebrószki gyebro69@gmail.com --- This bug affects some (but not all) games from GOG.com. The last one I tried and hit this bug was Trine 2. When you try to uninstall such a game using 'wine uninstaller' you will receive an error message, similar to this: 'Runtime Error (at 226:321):' and uninstall fails.
0026:trace:ole:DispCallFunc (0x14af70, 28, 4, 10, 9, 0x15f284, 0x15f260, 0x33f810 (vt=10)) 0026:trace:ole:DispCallFunc arg 0: type VT_BSTR 0x9f6048 {VT_BSTR: (null)} 0026:trace:ole:DispCallFunc arg 1: type VT_BSTR 0x9f6038 {VT_BSTR: L"root\CIMV2"} 0026:trace:ole:DispCallFunc arg 2: type VT_BSTR 0x9f6028 {VT_BSTR: (null)} 0026:trace:ole:DispCallFunc arg 3: type VT_BSTR 0x9f6018 {VT_BSTR: (null)} 0026:trace:ole:DispCallFunc arg 4: type VT_BSTR 0x15f180 {VT_BSTR: L""} 0026:trace:ole:DispCallFunc arg 5: type VT_BSTR 0x15f190 {VT_BSTR: L""} 0026:trace:ole:DispCallFunc arg 6: type VT_I4 0x15f1a0 {VT_I4: 0} 0026:trace:ole:DispCallFunc arg 7: type VT_DISPATCH 0x15f1b0 {VT_DISPATCH: (nil)} 0026:trace:ole:DispCallFunc arg 8: type VT_DISPATCH|VT_BYREF 0x15f1c0 {VT_DISPATCH|VT_BYREF 0x33f800} 0026:fixme:wbemdisp:locator_ConnectServer 0x14af70, (null), L"root\CIMV2", (null), (nil), L"", L"", 0x00000000, (nil), 0x33f800 0026:trace:ole:DispCallFunc retval: 0x33f810 {VT_ERROR: 80004001} 0026:trace:variant:VariantClear (0x15f140 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f1d0 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f150 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f1e0 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f160 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f1f0 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f170 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f200 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f180 {VT_BSTR: L""}) 0026:trace:variant:VariantClear (0x15f210 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f190 {VT_BSTR: L""}) 0026:trace:variant:VariantClear (0x15f220 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f1a0 {VT_I4: 0}) 0026:trace:variant:VariantClear (0x15f230 {VT_EMPTY}) 0026:trace:variant:VariantClear (0x15f1b0 {VT_DISPATCH: (nil)}) 0026:trace:variant:VariantClear (0x15f240 {VT_EMPTY}) 0026:trace:ole:ITypeInfo_fnInvoke [retval] value: 0x15f1c0 {VT_DISPATCH|VT_BYREF 0x33f800} 0026:trace:variant:VariantInit (0x9cd1bc) 0026:trace:variant:VariantCopyInd (0x9cd1bc {VT_EMPTY},0x15f1c0 {VT_DISPATCH|VT_BYREF 0x33f800}) 0026:trace:variant:VariantClear (0x9cd1bc {VT_EMPTY}) 0026:trace:variant:VariantCopyInd returning 0x00000000, 0x9cd1bc {VT_DISPATCH: (nil)} 0026:trace:variant:VARIANT_ClearInd (0x15f1c0 {VT_DISPATCH|VT_BYREF 0x33f800}) 0026:trace:variant:VariantClear (0x15f250 {VT_EMPTY}) 0026:warn:ole:ITypeInfo_fnInvoke invoked function failed with error 0x80004001 0026:trace:ole:GetErrorInfo (0, 0x33f7fc, (nil)) 0026:trace:ole:ITypeInfo_fnInvoke -- 0x80020009 0026:trace:ole:ITypeInfo_fnRelease (0x15b7b8)->(4294967295) 0026:trace:ole:SysAllocStringLen (null) 0026:trace:seh:raise_exception code=eedfade flags=1 addr=0x7b83aa8e ip=7b83aa8e tid=0026
Wine 1.7.23
https://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |farmboy0+winehq@googlemail. | |com
--- Comment #9 from Anastasius Focht focht@gmx.net --- *** Bug 37216 has been marked as a duplicate of this bug. ***
https://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |winebugs140@gmail.com
--- Comment #10 from Anastasius Focht focht@gmx.net --- *** Bug 37442 has been marked as a duplicate of this bug. ***
https://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Multiple |Multiple |applications/installers |applications/installers |fails due to |fails due to |SWbemLocator::ConnectServer |SWbemLocator::ConnectServer |being a stub (PSPad 4.5.7, |being a stub (PSPad 4.5.7, |Nitro PDF Professional |Nitro PDF Professional |6.2.x, eTax 2008) |6.2.x, eTax 2008, GOG.com | |games)
--- Comment #11 from Anastasius Focht focht@gmx.net --- Hello folks,
refining summary to avoid people reporting dupes on GOG.com installers.
Regards
https://bugs.winehq.org/show_bug.cgi?id=35076
Alessander Botti Benevides alessanderbotti@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |alessanderbotti@gmail.com
https://bugs.winehq.org/show_bug.cgi?id=35076
Richard Gardiner richard_gardiner@bluebottle.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |richard_gardiner@bluebottle | |.com
https://bugs.winehq.org/show_bug.cgi?id=35076
den123 den.aria@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |den.aria@gmail.com
--- Comment #12 from den123 den.aria@gmail.com --- I have same problem
SWbemLocator: TSWbemLocator; Service: ISWbemServices;
// Connect to WMI. Service := SWbemLocator.ConnectServer('', 'root\cimv2', '', '', '', '', 0, nil);
Exception: OLE error 80040154, ClassID: {76A64158-CB41-11D1-8B02-00600806D9B6} (EOleSysError).
ISWbemServices // *********************************************************************// // Interface: ISWbemServices // Flags: (4432) Hidden Dual OleAutomation Dispatchable // GUID: {76A6415C-CB41-11D1-8B02-00600806D9B6} // *********************************************************************//
https://bugs.winehq.org/show_bug.cgi?id=35076
--- Comment #13 from Anastasius Focht focht@gmx.net --- *** Bug 37805 has been marked as a duplicate of this bug. ***
https://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |301cc6aedeb09d4b7395e7cc1a9 | |b7719df112850 Status|NEW |RESOLVED Resolution|--- |FIXED
--- Comment #14 from Anastasius Focht focht@gmx.net --- Hello folks,
this is now implemented by recent commit series.
http://source.winehq.org/git/wine.git/commitdiff/cbb2b35ec1e0ef31ca843fed7cf... ("wbemdisp: Add IDispatch support to the services object.")
http://source.winehq.org/git/wine.git/commitdiff/301cc6aedeb09d4b7395e7cc1a9... ("wbemdisp: Forward SWbemLocator::ConnectServer to IWbemLocator::ConnectServer.")
Thanks Hans.
-- -snip --- ... 0041:trace:wbemdisp:locator_ConnectServer 0x13d368, (null), L"root\CIMV2", (null), (nil), L"", L"", 0x00000000, (nil), 0x33f5a8 0041:trace:ole:CoCreateInstance (rclsid={4590f811-1d3a-11d0-891f-00aa004b2e24}, pUnkOuter=(nil), dwClsContext=00000001, riid={dc12a687-737f-11cf-884d-00aa004b2e24}, ppv=0x13d370) 0041:trace:ole:CoGetTreatAsClass ({4590f811-1d3a-11d0-891f-00aa004b2e24},0x33f2e8) 0041:trace:ole:CoGetClassObject CLSID: {4590f811-1d3a-11d0-891f-00aa004b2e24},IID: {00000001-0000-0000-c000-000000000046} 0041:trace:ole:COMPOBJ_DllList_Add L"C:\windows\system32\wbem\wbemprox.dll" 0041:trace:ole:apartment_getclassobject added new loaded dll L"C:\windows\system32\wbem\wbemprox.dll" 0041:trace:ole:apartment_getclassobject calling DllGetClassObject 0x7d6849d8 0041:trace:wbemprox:DllGetClassObject {4590f811-1d3a-11d0-891f-00aa004b2e24} {00000001-0000-0000-c000-000000000046} 0x33f2f8 0041:trace:wbemprox:wbemprox_cf_CreateInstance (nil) {dc12a687-737f-11cf-884d-00aa004b2e24} 0x13d370 0041:trace:wbemprox:WbemLocator_create (0x33f26c) 0041:trace:wbemprox:WbemLocator_create returning iface 0x14e6b8 0041:trace:wbemprox:wbem_locator_QueryInterface 0x14e6b8 {dc12a687-737f-11cf-884d-00aa004b2e24} 0x13d370 0041:trace:ole:SysAllocStringLen (null) 0041:trace:wbemprox:wbem_locator_ConnectServer 0x14e6b8, L"\\.\root\CIMV2", (null), (null), L"", 0x00000000, L"", (nil), 0x33f3d8) 0041:fixme:wbemprox:wbem_locator_ConnectServer authentication not supported 0041:fixme:wbemprox:wbem_locator_ConnectServer specific locale not supported 0041:trace:wbemprox:WbemServices_create (0x33f3d8) 0041:trace:wbemprox:WbemServices_create returning iface 0x14e1d0 0041:trace:wbemdisp:SWbemServices_create 0x33f5a8, 0x14e1d0 0041:trace:wbemdisp:SWbemServices_create returning iface 0x14e1b8 0041:trace:ole:DispCallFunc retval: 0x33f5b8 {VT_ERROR: 00000000} ... --- snip ---
Regards
https://bugs.winehq.org/show_bug.cgi?id=35076
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #15 from Alexandre Julliard julliard@winehq.org --- Closing bugs fixed in 1.7.34.
https://bugs.winehq.org/show_bug.cgi?id=35076
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|http://www.pspad.com |https://web.archive.org/web | |/20200308120930/http://info | |.statik.uni-due.de/Lehre/CM | |/CLFE/Software/Editors/pspa | |d457inst_en.exe