http://bugs.winehq.org/show_bug.cgi?id=9665
Summary: Mask of eternity crashes at startup with wine version
0.9.36 and newer
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: deadlock(a)start.no
Kings Quest 8 - Mask of Eternity crashes on startup with an exception error.
The specific error has been attached. Version 0.9.36 didn't have this problem,
and after doing a lot of debugging and regression I located that the problem is
located in a change between version 0.9.36 and 0.9.37. The specific code is
shown below.
wine version 0.9.36, file wine/dlls/ddraw/direct3d.c:
324 d1 = dref;
325 d2 = dref;
326 hr = Callback( (LPIID) &IID_IDirect3DRefDevice,
reference_description, device_name, &d1, &d2, Context);
wine version 0.9.37(and up to version 0.9.45 at least):
327 d1 = dref;
328 d2 = dref;
329 /* The rgb device has the pow2 flag set in the hel caps, but not in
the hal caps */
330 d1.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2 |
D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
331 d1.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2 |
D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
332 hr = Callback( (LPIID) &IID_IDirect3DRGBDevice,
reference_description, device_name, &d1, &d2, Context);
I tried commenting out line 330 and 331 in version 0.9.44 and the game ran
without crashing at startup, but there has to be a better way to solve this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30586
Bug #: 30586
Summary: Kings Quest 8 crashes on startup
Product: Wine
Version: 1.1.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
this issue is split off from bug 2905
It was first mentioned in http://bugs.winehq.org/show_bug.cgi?id=2905#c16
Copied over my analysis from: http://bugs.winehq.org/show_bug.cgi?id=2905#c19
--- quote ---
yep, there is an initial crash preventing the game to load which needs to be
fixed first.
IDirect3D3::EnumDevices calls the app supplied callback two times.
It seems the game doesn't like IID_IDirect3DRGBDevice and resets some internal
data structures - one of them is a pointer to an internal device string
"D3D-display".
When the enumeration callback is called a second time for
IID_IDirect3DHALDevice, the app code tries to do some search/replace on that
string - but the pointer member was reset by the first callback call (NULL).
--- snip dlls/ddraw/ddraw.c ---
static HRESULT WINAPI d3d3_EnumDevices(IDirect3D3 *iface,
LPD3DENUMDEVICESCALLBACK callback, void *context)
{
static CHAR wined3d_description[] = "Wine D3DDevice using WineD3D and
OpenGL";
IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
D3DDEVICEDESC device_desc1, hal_desc, hel_desc;
D3DDEVICEDESC7 device_desc7;
HRESULT hr;
...
if (This->d3dversion != 1)
{
static CHAR reference_description[] = "RGB Direct3D emulation";
TRACE("Enumerating WineD3D D3DDevice interface.\n");
hal_desc = device_desc1;
hel_desc = device_desc1;
/* The rgb device has the pow2 flag set in the hel caps, but not in the
hal caps. */
hal_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
| D3DPTEXTURECAPS_NONPOW2CONDITIONAL |
D3DPTEXTURECAPS_PERSPECTIVE);
hal_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
| D3DPTEXTURECAPS_NONPOW2CONDITIONAL |
D3DPTEXTURECAPS_PERSPECTIVE);
hr = callback((GUID *)&IID_IDirect3DRGBDevice, reference_description,
device_name, &hal_desc, &hel_desc, context);
if (hr != D3DENUMRET_OK)
{
TRACE("Application cancelled the enumeration.\n");
LeaveCriticalSection(&ddraw_cs);
return D3D_OK;
}
}
...
TRACE("Enumerating HAL Direct3D device.\n");
hal_desc = device_desc1;
hel_desc = device_desc1;
/* The hal device does not have the pow2 flag set in hel, but in hal. */
hel_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
| D3DPTEXTURECAPS_NONPOW2CONDITIONAL |
D3DPTEXTURECAPS_PERSPECTIVE);
hel_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
| D3DPTEXTURECAPS_NONPOW2CONDITIONAL |
D3DPTEXTURECAPS_PERSPECTIVE);
hr = callback((GUID *)&IID_IDirect3DHALDevice, wined3d_description,
device_name, &hal_desc, &hel_desc, context);
if (hr != D3DENUMRET_OK)
{
TRACE("Application cancelled the enumeration.\n");
LeaveCriticalSection(&ddraw_cs);
return D3D_OK;
}
TRACE("End of enumeration.\n");
LeaveCriticalSection(&ddraw_cs);
return D3D_OK;
}
--- snip dlls/ddraw/ddraw.c ---
If you reverse the order of callback calls (IID_IDirect3DHALDevice first,
IID_IDirect3DRGBDevice second), the game starts successfully and seems playable
again.
Though it crashes at exit (which seems to be another bug) and the load savegame
bug of course.
--- quote ---
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30023
Bug #: 30023
Summary: Google Earth installer (google update version)
complains "could not connect to the internet"
Product: Wine
Version: 1.4-rc5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
This is just like bug 29074 in that the error dialog is the same
and native winhttp works around it, but it must be different under the hood.
To reproduce, grab
http://www.google.com/earth/download/thanks.html#os=win#updater=yes
(at the moment, that points to
http://dl.google.com/tag/s/appguid%3D%7B74AF07D8-FB8F-4d51-8AC7-927721D56EB…
)
and run in a clean wineprefix. After twenty seconds or so, the failure
dialog pops up.
This seems to be the last bit of winhttp activity in the log before the
failure:
0009:Call
winhttp.WinHttpQueryHeaders(00000003,00000016,00000000,00000000,0084e6a0,00000000)
ret=1803b163
0009:trace:winhttp:WinHttpQueryHeaders 0x3, 0x00000016, (null), (nil),
0x84e6a0, (nil)
0009:trace:winhttp:addref_object 0x15b070 -> refcount = 2
0009:trace:winhttp:grab_object handle 0x3 -> 0x15b070
0009:trace:winhttp:release_object object 0x15b070 refcount = 1
0009:Ret winhttp.WinHttpQueryHeaders() retval=00000000 ret=1803b163
0009:Call KERNEL32.GetLastError() ret=1800b70c
0009:Ret KERNEL32.GetLastError() retval=00002f92 ret=1800b70c
...
0031:Call oleaut32.SysAllocStringLen(0015b520 L"The installer could not connect
to the Internet. Ensure that your computer is connected to the Internet and
your firewall allows GoogleUpdate.exe to connect then try again.",000000ac)
ret=18021e72
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44897
Bug ID: 44897
Summary: Multiple applications using Crashpad/Chromium/CEF in
Win7+ mode crash on unimplemented function
ntdll.RtlGetUnloadEventTraceEx (Steam client)
Product: Wine
Version: 3.5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
related a bit to bug 44656 ("Multiple applications need ntdll.NtSuspendProcess
and ntdll.NtResumeProcess implementation (Crashpad/Chromium/CEF, Oracle Data
Visualization Desktop, cbwin)")
'steamwebhelper.exe' process crashes which triggers the crash reporting via
'Crashpad' (part of Chromium/CEF):
--- snip ---
00c9:trace:seh:raise_exception code=c0000005 flags=0 addr=0x18208dc ip=018208dc
tid=00c9
00c9:trace:seh:raise_exception info[0]=00000000
00c9:trace:seh:raise_exception info[1]=0000002c
00c9:trace:seh:raise_exception eax=00000000 ebx=0000000c ecx=00000008
edx=00000000 esi=00000008 edi=00000008
00c9:trace:seh:raise_exception ebp=0033b7fc esp=0033b7f8 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00210246
00c9:trace:seh:call_stack_handlers calling handler at 0x650a58 code=c0000005
flags=0
00c9:trace:seh:call_stack_handlers handler at 0x650a58 returned 1
00c9:trace:seh:call_stack_handlers calling handler at 0x650c98 code=c0000005
flags=0
00c9:trace:seh:call_stack_handlers handler at 0x650c98 returned 1
00c9:trace:seh:call_stack_handlers calling handler at 0x5953d0 code=c0000005
flags=0
00c9:trace:seh:call_stack_handlers handler at 0x5953d0 returned 1
00c9:trace:seh:call_stack_handlers calling handler at 0x7b48f4cc code=c0000005
flags=0
--- snip ---
Causing another crash in the crash reporting itself:
--- snip ---
...
0091:fixme:ntdll:NtSuspendProcess stub: 0xf0
[0402/195414.122:ERROR:scoped_process_suspend.cc(31)] NtSuspendProcess: <failed
to retrieve error message (0x13d)> (0xc0000002)
...
0091:trace:seh:raise_exception code=c0000005 flags=0 addr=(nil) ip=00000000
tid=0091
0091:trace:seh:raise_exception info[0]=00000008
0091:trace:seh:raise_exception info[1]=00000000
0091:trace:seh:raise_exception eax=00000000 ebx=00000000 ecx=05acf7bc
edx=ffffffff esi=05acfb08 edi=05acfb98
0091:trace:seh:raise_exception ebp=05acf7dc esp=05acf7cc cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010206
0091:trace:seh:call_stack_handlers calling handler at 0x7bcb17b2 code=c0000005
flags=0
wine: Unhandled page fault on execute access to 0x00000000 at address (nil)
(thread 0091), starting debugger...
--- snip ---
Disassembly of crash location:
--- snip ---
...
036C434D PUSH ESI
036C434E MOV ESI,libcef.04B7110C
036C4353 PUSH ESI
036C4354 CALL libcef.033EF85F
036C4359 CMP DWORD PTR DS:[4B7110C],-1
036C4360 POP ECX
036C4361 JNZ SHORT libcef.036C4341
036C4363 PUSH 1
036C4365 PUSH libcef.04611968 ; ASCII "::NtSuspendProcess"
036C436A PUSH libcef.048759CC ; UNICODE "ntdll.dll"
036C436F CALL libcef.02B21EEF
036C4374 PUSH ESI
036C4375 MOV DWORD PTR DS:[4B71108],EAX
036C437A CALL libcef.033EF820
036C437F ADD ESP,10
036C4382 JMP SHORT libcef.036C4341
036C4384 PUSH EBP
036C4385 MOV EBP,ESP
036C4387 MOV EAX,DWORD PTR FS:[2C]
036C438D MOV ECX,DWORD PTR DS:[4B6E5A4]
036C4393 MOV ECX,DWORD PTR DS:[EAX+ECX*4]
036C4396 MOV EAX,DWORD PTR DS:[4B7111C]
036C439B CMP EAX,DWORD PTR DS:[ECX+18]
036C43A1 JLE SHORT libcef.036C43A6
036C43A3 JMP SHORT libcef.036C43B7
036C43A5 POP ESI
036C43A6 PUSH DWORD PTR SS:[EBP+10]
036C43A9 PUSH DWORD PTR SS:[EBP+C]
036C43AC PUSH DWORD PTR SS:[EBP+8]
036C43AF CALL DWORD PTR DS:[4B71118]
036C43B5 POP EBP
036C43B6 RETN
036C43B7 PUSH ESI
036C43B8 MOV ESI,libcef.04B7111C
036C43BD PUSH ESI
036C43BE CALL libcef.033EF85F
036C43C3 CMP DWORD PTR DS:[4B7111C],-1
036C43CA POP ECX
036C43CB JNZ SHORT libcef.036C43A5
036C43CD PUSH 1
036C43CF PUSH libcef.04611990 ; ASCII "::RtlGetUnloadEventTraceEx"
036C43D4 PUSH libcef.048759CC ; UNICODE "ntdll.dll"
036C43D9 CALL libcef.02B21EEF
036C43DE PUSH ESI
036C43DF MOV DWORD PTR DS:[4B71118],EAX
...
--- snip ---
Source code:
https://github.com/electron/crashpad/blob/HEAD/snapshot/win/process_snapsho…
--- snip ---
void ProcessSnapshotWin::InitializeUnloadedModules() {
// As documented by https://msdn.microsoft.com/en-us/library/cc678403.aspx
// we can retrieve the location for our unload events, and use that address
in
// the target process. Unfortunately, this of course only works for
// 64-reading-64 and 32-reading-32, so at the moment, we simply do not
// retrieve unloaded modules for 64-reading-32. See
// https://crashpad.chromium.org/bug/89.
#if defined(ARCH_CPU_X86_64)
if (!process_reader_.Is64Bit()) {
LOG(ERROR)
<< "reading unloaded modules across bitness not currently supported";
return;
}
using Traits = process_types::internal::Traits64;
#elif defined(ARCH_CPU_X86)
using Traits = process_types::internal::Traits32;
#else
#error port
#endif
ULONG* element_size;
ULONG* element_count;
void* event_trace_address;
RtlGetUnloadEventTraceEx(&element_size, &element_count,
&event_trace_address);
if (*element_size < sizeof(RTL_UNLOAD_EVENT_TRACE<Traits>)) {
LOG(ERROR) << "unexpected unloaded module list element size";
return;
}
...
--- snip ---
Surprise surprise .. some Wine-Staging patchset exists:
https://github.com/wine-staging/wine-staging/tree/master/patches/ntdll-RtlG…
There is a bit tracebility here:
https://dev.wine-staging.com/patches/88/
--- quote ---
Adding a stub is a bit difficult as this function can not fail and chromium
tries to access the address unless it encounters a suspicious element size.
Setting the size to zero causes chromium to print a warning without accessing
the memory address.
--- quote ---
$ wine --version
wine-3.5
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45347
Bug ID: 45347
Summary: Google Chrome installer fails due to missing
propsys.dll.InitPropVariantFromCLSID
Product: Wine
Version: 3.9
Hardware: x86
URL: https://www.google.com/chrome/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: propsys
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Depends on: 30023
Distribution: ---
Native propsys(64bit) solves the issue and the installer completes without
error.
Needs working around bug 30023, with "winetricks winhttp win7"
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25918
Summary: Google Chrome Standalone Installer fails, "Unknown
Installer Error"
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Created an attachment (id=33035)
--> (http://bugs.winehq.org/attachment.cgi?id=33035)
+relay,+seh log of install failing
The offline installer at
https://dl-ssl.google.com/update2/installers/ChromeStandaloneSetup.exe
with sha1sum 52e8d8e406475da0bebfe9f1fa454d4680228e32
fails quickly with a messagebox saying "Unknown Installer Error".
+relay shows
000b:Call KERNEL32.WideCharToMultiByte(00000003,00000000,01c251fe L"Unknown
Installer ErrorUInstallation failed. Google Installer requires Windows 2000
Service Pack 4 or better.",00000017,0012cf58,00000017,00000000,00000000)
ret=004021ca
000b:Ret KERNEL32.WideCharToMultiByte() retval=00000017 ret=004021ca
000b:Call user32.MessageBoxA(00000000,0012cf58 "Unknown Installer
Error",0012ce88 "Google Installer",00000000) ret=00401dab
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48041
Bug ID: 48041
Summary: Faktum Faktura msi installer fails with "unknown
runtime error"
Product: Wine
Version: 4.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: rebe(a)gmx.net
Distribution: ---
The MSI installer of Faktum Faktura fails at the end of the installation
process with
err:msi:MsiActiveScriptSite_OnScriptError script error: L"Unknown runtime
error"
The respective demo application could be downloaded from:
https://download.faktumsoftware.com/download/de/faktum_setup.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41593
Bug ID: 41593
Summary: Molot VST - GUI still doesn't work
Product: Wine
Version: 1.9.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: xj(a)wp.pl
Distribution: ---
This is second bug for the same application ( problem first appear at least in
1.7.20), but developers prefer more tickets, so here it is ;-)
Previously this has been reported here, and last comment from @Nikolay Sivov
explain why we need additional report:
https://bugs.winehq.org/show_bug.cgi?id=37579
My wine report different problem:
fixme:dxgi:DXGID3D10CreateDevice Ignoring flags 0x20.
fixme:dxgi:dxgi_check_feature_level_support Ignoring adapter type.
fixme:winediag:dxgi_check_feature_level_support None of the requested D3D
feature levels is supported on this GPU with the current shader backend.
fixme:d2d:d2d_stroke_style_init Ignoring stroke style properties.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36215
Bug ID: 36215
Summary: Inspect tool (Microsoft Active Accessibility
inspector), part of Windows 7 SDK needs
oleacc.dll.GetProcessHandleFromHwnd
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
since there is some work in Microsoft Active Accessibility (MSAA) and maybe
Microsoft UI Automation (UIA) area I remembered some accessibility tools, part
of Windows SDK.
Overview: https://en.wikipedia.org/wiki/Microsoft_UI_Automation
Windows 7 SDK (containing the MSAA/UIA tools and examples):
http://www.microsoft.com/en-us/download/details.aspx?id=8279
Windows Automation API 3.0 (provides needed 'UIAutomationCore.dll'):
https://support.microsoft.com/kb/971513
Download for Windows XP:
http://www.microsoft.com/downloads/details.aspx?FamilyId=cd55456d-9703-42a0…
(you might need 'taskset -c 0 <installer> to work around bug 35041)
'Inspect' tool description:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd318521%28v=vs.85%…
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Microsoft SDKs/Windows/v7.1/Bin
$ wine ./Inspect.exe
...
wine: Call from 0x7bc5276a to unimplemented function
OLEACC.dll.GetProcessHandleFromHwnd, aborting
wine: Unimplemented function OLEACC.dll.GetProcessHandleFromHwnd called at
address 0x7bc5276a (thread 0009), starting debugger...
Unhandled exception: unimplemented function OLEACC.dll.GetProcessHandleFromHwnd
called in 32-bit code (0x7bc5276a).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7bc5276a ESP:0033ec08 EBP:0033ec6c EFLAGS:00000216( - -- I -A-P- )
EAX:0033ec14 EBX:7bcd1000 ECX:00000000 EDX:00000014
ESI:00343230 EDI:00010020
...
Backtrace:
=>0 0x7bc5276a stub_entry_point+0x4b(dll="OLEACC.dll",
name="GetProcessHandleFromHwnd", ret_addr=0x5387e21d)
[/home/focht/projects/wine/wine.repo/src/dlls/ntdll/loader.c:196] in ntdll
(0x0033ec6c)
1 0x0056000f (0x0033ec8c)
2 0x5386877d in uiautomationcore (+0x3877c) (0x0033eca0)
...
11 0x53880e8c in uiautomationcore (+0x50e8b) (0x0033f4f4)
12 0x01013eee in inspect (+0x13eed) (0x0033f52c)
...
15 0x01012590 in inspect (+0x1258f) (0x0033f588)
...
0x7bc5276a stub_entry_point+0x4b
[/home/focht/projects/wine/wine.repo/src/dlls/ntdll/loader.c:196] in ntdll:
subl $4,%esp
196 for (;;) RtlRaiseException( &rec );
Modules:
Module Address Debug info Name (64 modules)
PE 1000000- 102b000 Export inspect
PE 53830000-538c8000 Export uiautomationcore
...
Threads:
process tid prio (all id:s are in hex)
00000008 (D) C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\Inspect.exe
00000009 0 <==
...
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd318087%28v=vs.85%…
$ sha1sum winsdk_web.exe
a8717ebb20a69c7efa85232bcb9899b8b07f98cf winsdk_web.exe
$ du -sh winsdk_web.exe
500K winsdk_web.exe
$ wine --version
wine-1.7.17-175-gc1bf61e
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36470
Bug ID: 36470
Summary: Inspect tool (Microsoft Active Accessibility
inspector), part of Windows 7 SDK needs
oleacc.dll.WindowFromAccessibleObject
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
continuation of bug 36372
Prerequisite: 'winetricks -q dotnet40 corefonts'
Windows 7 SDK (containing the MSAA/UIA tools and examples):
http://www.microsoft.com/en-us/download/details.aspx?id=8279
Windows Automation API 3.0 (provides needed 'UIAutomationCore.dll'):
https://support.microsoft.com/kb/971513
Download for Windows XP:
http://www.microsoft.com/downloads/details.aspx?FamilyId=cd55456d-9703-42a0…
(you might need 'taskset -c 0 <installer> to work around bug 35041)
'Inspect' tool description:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd318521%28v=vs.85%…
Backtrace:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Microsoft SDKs/Windows/v7.1/Bin
$ wine ./Inspect.exe
...
Unhandled exception: unimplemented function
oleacc.dll.WindowFromAccessibleObject called in 32-bit code (0x7b83ac57).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7b83ac57 ESP:0033db04 EBP:0033db68 EFLAGS:00000287( - -- I S - -P-C)
EAX:7b826c7d EBX:7b8bb000 ECX:f69ecfc7 EDX:0033db2c
ESI:0033dc48 EDI:00000000
...
Backtrace:
=>0 0x7b83ac57 RaiseException+0x8f(code=<couldn't compute location>,
flags=<couldn't compute location>, nbargs=<couldn't compute location>,
args=<couldn't compute location>)
[/home/focht/projects/wine/wine.repo/src/dlls/kernel32/except.c:84] in kernel32
(0x0033db68)
1 0xf69ecf01 __wine_spec_unimplemented_stub+0x34(module="oleacc.dll",
function="WindowFromAccessibleObject")
[/home/focht/projects/wine/wine.repo/src/dlls/winecrt0/stub.c:34] in oleacc
(0x0033dba0)
2 0xf69e7d1d __wine_stub_WindowFromAccessibleObject+0x28() in oleacc
(0x0033dbcc)
3 0x53878d08 in uiautomationcore (+0x48d07) (0x0033dbcc)
4 0x53879396 in uiautomationcore (+0x49395) (0x0033dc1c)
...
19 0x7ebc9282 call_hook_proc+0xb2(proc=0x5384988f, id=0x4, code=0, wparam=0,
lparam=0x33f3cc, prev_unicode=0x1, next_unicode=0x1)
[/home/focht/projects/wine/wine.repo/src/dlls/user32/hook.c:345] in user32
(0x0033f018)
20 0x7ebc9749 call_hook+0x31f(info=0x33f13c, code=0, wparam=0,
lparam=0x33f3cc)
[/home/focht/projects/wine/wine.repo/src/dlls/user32/hook.c:427] in user32
(0x0033f098)
21 0x7ebc99e9 HOOK_CallHooks+0x218(id=0x4, code=0, wparam=0, lparam=0x33f3cc,
unicode=0x1) [/home/focht/projects/wine/wine.repo/src/dlls/user32/hook.c:493]
in user32 (0x0033f388)
...
25 0x7edef2ce manage_desktop+0x7d2(arg="")
[/home/focht/projects/wine/wine.repo/src/programs/explorer/desktop.c:915] in
explorer (0x0033f898)
26 0x7edf189f parse_command_line+0x177(commandline="/desktop",
parameters=0x33f920)
[/home/focht/projects/wine/wine.repo/src/programs/explorer/explorer.c:718] in
explorer (0x0033f8c8)
...
0x7b83ac57 RaiseException+0x8f
[/home/focht/projects/wine/wine.repo/src/dlls/kernel32/except.c:84] in
kernel32: subl $4,%esp
84 RtlRaiseException( &record );
Modules:
Module Address Debug info Name (59 modules)
PE 53830000-538c8000 Export uiautomationcore
ELF 7b800000-7ba60000 Dwarf kernel32<elf>
\-PE 7b810000-7ba60000 \ kernel32
ELF 7bc00000-7bcee000 Dwarf ntdll<elf>
\-PE 7bc10000-7bcee000 \ ntdll
...
ELF 7edd9000-7ee00000 Dwarf explorer<elf>
\-PE 7ede0000-7ee00000 \ explorer
...
Threads:
process tid prio (all id:s are in hex)
00000008 Inspect.exe
0000002d 0
0000002c 0
0000002b 0
0000002a 0
00000029 0
00000009 0
...
00000014 (D) C:\windows\system32\explorer.exe
00000015 0 <==
...
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd373876%28v=vs.85%…
The 'Inspect' tool automatically injects 'UIAutomationCore.dll' into all or
selected processes on the current desktop to perform data retrieval on behalf
of a client.
In this case it's Wine builtin 'explorer.exe' crashing after injection
succeeded.
The dll can also load UIA plugins (providers) into its host process to extract
data using different techniques.
$ sha1sum winsdk_web.exe
a8717ebb20a69c7efa85232bcb9899b8b07f98cf winsdk_web.exe
$ du -sh winsdk_web.exe
500K winsdk_web.exe
$ wine --version
wine-1.7.18-155-gdb42703
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35035
Bug #: 35035
Summary: HF pAppLoc (AppLocale) installer crashes due to
unimplemented function apphelp.dll.ShimFlushCache
Product: Wine
Version: 1.7.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
not really useful as of now because Wine doesn't support app shims yet.
Anyway, the installer shouldn't crash ;)
Website: http://www.hongfire.com/forum/downloads.php?do=file&id=329
If download fails, alternate:
http://www.mediafire.com/download/1p195o818um85d7/HF+pAppLoc.exe
--- snip ---
wine: Call from 0x7b83a8ef to unimplemented function
apphelp.dll.ShimFlushCache, aborting
wine: Unimplemented function apphelp.dll.ShimFlushCache called at address
0x7b83a8ef (thread 003b), starting debugger...
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/bb432482%28v=vs.85%29.aspx
--- snip ---
BOOL WINAPI ShimFlushCache(
_In_opt_ HWND hwnd,
_In_opt_ HINSTANCE hInstance,
_In_opt_ LPCSTR lpszCmdLine,
_In_ int nCmdShow
);
--- snip ---
Make nice trace of parameters when you stub it ...
$ sha1sum HF\ pAppLoc.exe
910d8b36fd11e6813dda7d03f1fea8b10105ab94 HF pAppLoc.exe
$ du -sh HF\ pAppLoc.exe
1.6M HF pAppLoc.exe
$ wine --version
wine-1.7.7-262-g30a3e9c
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38934
Bug ID: 38934
Summary: Application fails to run complaining about
HTMLayout.dll. Works fine in Wine 1.4.46.
Product: Wine
Version: 1.7.47
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: nanawel(a)gmail.com
Distribution: ---
After updating to 1.4.47 on my Archlinux x64, I can't run SQLyog Community
Edition anymore (a MySQL management GUI).
When I run from a terminal, it says:
$ wine SQLyogCommunity.exe
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
err:module:attach_process_dlls "HTMLayout.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for
L"Z:\\home\\myuser\\.wine\\drive_c\\Program Files\\SQLyog
Community\\SQLyogCommunity.exe" failed, status c0000005
If I revert back to 1.4.46, the application runs flawlessly.
I tried to delete ~/.wine and run it again, but same error on 1.4.47, and it
still works on 1.4.46. That seems like a regression somewhere.
I was using an old version of SQLyog so I tried to update to the latest version
(available here: https://github.com/webyog/sqlyog-community/wiki/Downloads )
but I keep getting the crash, only with 1.4.47 again.
Does not seem to be related to bug #36487, even if the DLL is the same (IMHO).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37980
Bug ID: 37980
Summary: Error when opening *.docx files with
wordview_en-us.exe
Product: Wine
Version: 1.7.34
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yajo(a)openaliasbox.org
Distribution: ---
Created attachment 50603
--> https://bugs.winehq.org/attachment.cgi?id=50603
Relevant logs
I'll use Spanish version instructions, but I tested with en-US and happens
exactly the same.
1. Download and install wordview_es-es.exe from
http://www.microsoft.com/es-ES/download/details.aspx?id=4
2. Download and install FileFormatConverters.exe from
http://www.microsoft.com/es-ES/download/details.aspx?id=3
3. Try to open any *.docx file.
4. A dialog appears saying: "Error when opening file." See the logs.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25814
Summary: installer crashes with error Call from 0x7b83a742 to
unimplemented function
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: rpc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: justinasu(a)gmail.com
Created an attachment (id=32898)
--> (http://bugs.winehq.org/attachment.cgi?id=32898)
backtrace log from console output
When trying to install word viewer 2007 (wordview_en-us.exe)
installer crashes just before updating ini files
wine wordview_en-us.exe
.......
err:menubuilder:convert_to_native_icon error 0x80040154 creating
IWICImagingFactory
err:module:DelayLoadFailureHook failed to delay load
rpcrt4.dll.I_RpcExceptionFilter
wine: Call from 0x7b83a742 to unimplemented function
rpcrt4.dll.I_RpcExceptionFilter, aborting
using ubuntu Linux Justinas 2.6.32-27-generic #49-Ubuntu SMP Wed Dec 1 23:52:12
UTC 2010 i686 GNU/Linux
backtrace attached
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38895
Bug ID: 38895
Summary: IrfanView cannot use its WebP plugin
Product: Wine
Version: 1.7.47
Hardware: x86
URL: http://www.irfanview.com/
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: t.artem(a)mailcity.com
Distribution: Red Hat
Created attachment 51830
--> https://bugs.winehq.org/attachment.cgi?id=51830
Test Image
There's a regression in Wine 1.7.47: IrfanView can no longer use its WebP
plugin (it fails to load pictures in this format or save to this format).
Wine 1.7.45 doesn't have this problem.
There are no (new) error messages in Wine 1.7.47.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38897
Bug ID: 38897
Summary: Word Viewer crashes trying to open .docx files in XP
mode in 1.7.47
Product: Wine
Version: 1.7.47
Hardware: x86
URL: http://download.microsoft.com/download/6/a/6/6a689355-
b155-4fa7-ad8a-dfe150fe7ac6/wordview_en-us.exe
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
CC: nerv(a)dawncrow.de
Regression SHA1: 7e1c886fbfd362376b6aebe5381ab7d4433c3371
Distribution: SUSE
Not the same as bug 37980; this occurs in 1.7.47 when the Windows version is
set to XP.
To reproduce:
1. Download and install
http://download.microsoft.com/download/6/a/6/6a689355-b155-4fa7-ad8a-dfe150…
in a clean 32 bit wineprefix.
2. Download and install
http://download.microsoft.com/download/9/2/2/9222D67F-7630-4F49-BD26-476B51…
to the same wineprefix.
3. Run WORDVIEW.EXE and try to open a .docx file. (You will need to set the
file browser to show all files to see them.)
Results: Wine's crash dialog pops up, but is unable to get a backtrace.
Dismissing the crash dialog results in a message from the app that there was an
error opening the file. If Wine's crash dialog is disabled, you just get the
error message from Word Viewer, and there is still no backtrace in the console.
Regression test results:
7e1c886fbfd362376b6aebe5381ab7d4433c3371 is the first bad commit
commit 7e1c886fbfd362376b6aebe5381ab7d4433c3371
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Tue Jul 7 19:50:25 2015 +0200
ntdll: Randomize security cookie when available.
:040000 040000 eb0acb52430399cbe1b9957cb712e3491ef17958
ba23d34ab2977cba80866518f886d78fee79d3e8 M dlls
Reverting the patch fixes it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19319
Summary: Word Viewer 2003 - installs wrong files
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?Family
Id=95E24C87-8732-48D5-8689-AB826E7B8FDF&displaylang=en
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
C:\Program Files\Common Files\Microsoft Shared\OFFICE11\1033\LCCWIZ.DLL
On wine:
60ee0be034a623ba61ba271f8b17115adddcdad0
On windows:
92ea0d6e0b0e7985b068d6f49f63b12f41b89b3f
C:\Program Files\Microsoft Office\OFFICE11\GDIPLUS.DLL
On wine:
a71b9a807dbbc58d718fe7f6de6fa75021b04bd0
On windows:
4a67552dff886ded8462f7db0d044a12aef52f32
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10147
Summary: Word Viewer 2003 - Tab behavior differs from Windows
Product: Wine
Version: 0.9.47.
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?FamilyId
=95E24C87-8732-48D5-8689-AB826E7B8FDF&displaylang=en
OS/Version: Linux
Status: NEW
Keywords: conformance, download
Severity: trivial
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Tab behavior differs from Windows while using Word Viewer 2003's installer.
While this is a trivial matter, I was attempting to write a script using
AutoHotKey to automate testing of the program in Wine/Windows. Since screen
resolution/windows placement can differ very easily, using the keyboard is the
easiest way to make sure the script does what I want. The main difference is
that under Windows, one tab takes me from the license agreement's text to the
checkbox to accept the agreement. Under Wine, it takes me to the cancel button.
Using tab twice under Wine brings me to the checkbox.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19440
Summary: Word Viewer 2003 - Tab button does not work
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?Family
Id=95E24C87-8732-48D5-8689-AB826E7B8FDF&displaylang=en
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 10147
See bug 10147 for more background.
Tab does not work for word viewer. Focus is started in the edit box, and you
can't tab out. If you click on another button somewhere, then you can tab, but
as soon as you reach the edit box (for the license info), the control is again
'stuck'.
It's a pretty old regression. I haven't had time to run the regression test
yet, but this is a supported app, so perhaps someone will find time to do so...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29195
Bug #: 29195
Summary: wordview crash/stuck when openning file
Product: Wine
Version: 1.3.33
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nadavvin(a)gmail.com
Classification: Unclassified
Created attachment 37675
--> http://bugs.winehq.org/attachment.cgi?id=37675
word view log
open WORDVIEW.EXE
file->open->choose file and open it
WORDVIEW stuck/crash
log attached
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37321
Bug ID: 37321
Summary: foobar2000 'Scheduler' plugin crashes on unimplemented
function shell32.dll.ShellExec_RunDLLW
Product: Wine
Version: 1.7.27
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
reported here: https://forum.winehq.org/viewtopic.php?f=8&t=23495
foobar2000 download:
http://www.foobar2000.org/getfile/e0e825ef100c80cc39f698e1a1e86e4e/foobar20…
Scheduler plugin download:
http://www.foobar2000.org/getcomponent/0ce61869037d9782b6b061a8122693aa/640…
Judging from the backtrace, the plugin is likely calling it as follows:
'rundll32.exe shell32.dll,ShellExec_RunDLL ...'
Source:
http://source.winehq.org/git/wine.git/blob/97be8d027b56806e8263f2040b9484f7…
--- snip ---
431 @ stub ShellExec_RunDLL
432 @ stub ShellExec_RunDLLA
433 @ stub ShellExec_RunDLLW
--- snip ---
You might want to implement the ansi variant as well.
$ sha1sum foobar2000_v1.3.3.exe
69c9bbd8964fc3b284ccaff7e2001b461d60e1f4 foobar2000_v1.3.3.exe
$ du -sh foobar2000_v1.3.3.exe
3.7M foobar2000_v1.3.3.exe
$ sha1sum foo_scheduler.zip
f1faee91c21ea51106c7e3f9cdfb376aab117a86 foo_scheduler.zip
$ du -sh foo_scheduler.zip
360K foo_scheduler.zip
$ wine --version
wine-1.7.27-47-g92bcb74
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34622
Bug #: 34622
Summary: no music in neocron
Product: Wine
Version: 1.7.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: baracoder(a)googlemail.com
Classification: Unclassified
quartz and mfc42 installed with winetricks
posslible error:
err:ole:CoGetClassObject no class object {94297043-bd82-4dfd-b0de-8177739c6d20}
could be created for context 0x1
err:ole:CoGetClassObject class {94297043-bd82-4dfd-b0de-8177739c6d20} not
registered
the music files are in mp3 format
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.