http://bugs.winehq.org/show_bug.cgi?id=17922
Summary: LiveZilla aborts due to unimplemented mshtml stubs
Product: Wine
Version: 1.1.18
Platform: PC
URL: http://www.livezilla.net/downloads/files/LiveZilla_3.1.7
.12_Setup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=20254)
--> (http://bugs.winehq.org/attachment.cgi?id=20254)
LiveZilla standard error messages
With today's Git (wine-1.1.18-100-g9c95322), after installing the .NET
Framework 2.0 with winetricks and installing LiveZilla, starting the LiveZilla
application yields a dialog box with the message "Internet Explorer cannot be
accessed: The method or operation is not implemented.", which seems to stem
from:
fixme:mshtml:HTMLLocation_get_href (0x6cc3f98)->(0x32bfe4)
Changing the stub to return S_OK only changes the particular error that occurs.
--
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=32414
Bug #: 32414
Summary: Unhandled page fault exception when launching the
Samsung TV SDK's emulator
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andyearnshaw(a)gmail.com
Classification: Unclassified
Created attachment 42759
--> http://bugs.winehq.org/attachment.cgi?id=42759
Debug output for Emulator2.exe
When executing Emulator2.exe from the Samsung TV SDK 3.5.2 (from
http://samsungdforum.com), the program immediately exits with the following
error:
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x00409373)
Full output with the command used to launch is attached. As for the SDK
itself, that fails with a similar error message, but it's just an IDE (and/or a
plugin for Eclipse) and much of the functionality can be reproduced with other
applications. The emulator is the only part of the SDK whose functionality
cannot be reproduced in a Unix environment.
I've attempted various suggested workarounds, such as changing to the .exe
file's directory before execution and running from a 32-bit Wine prefix. I've
also tried several older versions of the emulator with the same result.
A brief discussion regarding the issue can be found on the Wine forums at
http://forum.winehq.org/viewtopic.php?f=8&t=17835.
--
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=46492
Bug ID: 46492
Summary: Call of Duty Black Ops 4 fails to launch
Product: Wine
Version: 4.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: throwawayaccx(a)gmail.com
Distribution: ---
Created attachment 63330
--> https://bugs.winehq.org/attachment.cgi?id=63330
Here's the log of opening Battle.net and launching BLOPS4
Lines 1211-1216 happen when I launch the game.
--
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=30594
Bug #: 30594
Summary: Mak of eternity crashes with DirectDraw mode.
Product: Wine
Version: 1.5.3
Platform: x86
URL: http://www.download.com/King-s-Quest-The-Mask-of-Etern
ity/3000-7564_4-10025133.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
Classification: Unclassified
Created attachment 40030
--> http://bugs.winehq.org/attachment.cgi?id=40030
Backtrace with ddraw channel enabled.
Mak of eternity crashes with DirectDraw mode. With Direct3D mode, the game
starts.
--
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=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.
http://bugs.winehq.org/show_bug.cgi?id=26369
Summary: A.R.E.S. Extinction Agenda hangs during intro
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://ares.x10studio.com is a platform scroller written in XNA.
First problem: it's a .net app.
Mono 2.10.1 is insufficient:
Method '<Module>:<CrtImplementationDetails>.DoDllLanguageSupportValidation ()'
in assembly
'C:\windows\assembly\GAC_32\Microsoft.Xna.Framework\3.1.0.0__6d5c3888ef60e27d\Microsoft.Xna.Framework.dll'
contains native code that cannot be executed by Mono in modules loaded from
byte arrays. The assembly was probably created using C++/CLI.
Workaround: winetricks dotnet20
Second problem: it aborts with
err:ole:CoGetClassObject class {6bf52a52-394a-11d3-b153-00c04f79faa6} not
registered
...
System.InvalidOperationException: Song playback failed.
even though I have all the ubuntu 10.10 gstreamer codecs loaded.
Workaround: winetricks wmp9
Third problem: it hangs with a stream of quartz/gstreamer warnings like
warn:quartz:StdMediaSample2_SetActualDataLength Tried to set length to 49152,
while max is 16384
warn:quartz:DSoundRender_GetWritePos Delta too big 40/0, too far ahead
warn:quartz:DSoundRender_GetWritePos Advancing 7056 bytes
Workaround: winetricks quartz
You can then play the game.
--
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=26349
Summary: winetricks -q dotnet20 crashes during install
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: hans(a)meelstraat.net
Introduced by
http://source.winehq.org/git/wine.git/?a=commitdiff;h=f1e59351ded497a7f9cd7…
wine /home/austin/.cache/winetricks/dotnet20/dotnetfx.exe /q /c:install.exe /q
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x451d7c
--
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=26387
Summary: .NET Framework 2.0: Fails to install due to regression
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
CC: hans(a)meelstraat.net
Steps to reproduce:
1) remove ~/.wine
2) winetricks dotnet20
Behaviour:
NET Framework fails to install on Wine 1.3.15+
Expected behaviour:
Installation shouldn't fail like it is in Wine 1.3.15
Regression test:
f1e59351ded497a7f9cd7c27c0fdfcf6db3765c2 is the first bad commit
commit f1e59351ded497a7f9cd7c27c0fdfcf6db3765c2
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Mon Mar 7 12:40:39 2011 +0100
msi: Manage one assembly cache per major version of the .NET runtime.
:040000 040000 2b62d17a653c84ad2f93022804190b232c381eec
fbea1931db1990d197c0064e4dd0a9307d414994 M dlls
--
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=30162
Bug #: 30162
Summary: dotnetfx.exe: crash during installation of .net 2.0
with mscorsvw.exe
Product: Wine
Version: 1.4-rc6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugs.winehq.org(a)terrorise.me.uk
Classification: Unclassified
Created attachment 39352
--> http://bugs.winehq.org/attachment.cgi?id=39352
wine output
1) download .net framework 2.0 (dotnetfx.exe,
http://www.microsoft.com/download/en/details.aspx?id=19)
2) run it in a fresh wine 1.4-rc6 environment
3) install claims to complete, however at the end there is a crash in
mscorsvw.exe - Program Error Details fails to load
--
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=29681
Bug #: 29681
Summary: tracefmt from Windows Platform SDK 7.1 crashes due to
unimplemented function ADVAPI32.dll.CloseTrace
Product: Wine
Version: 1.3.37
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Microsoft SDKs/Windows/v7.1/Bin
...
$ wine ./tracefmt.exe
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
Examining C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\default.tmf for
message formats, none found, file not found
Searching for TMF files on path: (null)
fixme:advapi:OpenTraceW 0x1337d8: stub
Logfile C:\Logfile.Etl:
OS version 0.0.0 (Currently running on 5.0.2195)
Start Time 1601-01-01-01:00:00.000
End Time Not set (Logger may not have been stopped).
Timezone is (Bias is 0mins)
BufferSize 0 B
Maximum File Size 0 MB
Buffers Written Not set (Logger may not have been stopped).
Logger Mode Settings (0) Logfile Mode is not set
ProcessorCount 0
fixme:advapi:ProcessTrace 0x32dd6c 1 (nil) (nil): stub
Error processing trace entry with status=0x78 (GetLastError=0xb7)
wine: Call from 0x7bc4bd9a to unimplemented function ADVAPI32.dll.CloseTrace,
aborting
wine: Unimplemented function ADVAPI32.dll.CloseTrace called at address
0x7bc4bd9a (thread 0024), starting debugger...
--- snip ---
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=44588
Bug ID: 44588
Summary: Multiple kernel drivers need
ntoskrnl.exe.KeWaitForMultipleObjects semi-stub
(Franson VSerial service 'bizvserialnt.sys')
Product: Wine
Version: 3.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntoskrnl
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
continuation of bug 32186
copy/pasta of my comments from https://bugs.winehq.org/show_bug.cgi?id=32186#c3
With the stub added, the return value 'STATUS_NOT_IMPLEMENTED' causes an
endless looping in driver:
--- snip ---
...
fixme:ntoskrnl:KeWaitForMultipleObjects (2, 0x64ea4c, 1, 0, 0, 0, (nil),
0x64ea1c): stub
fixme:ntoskrnl:KeWaitForMultipleObjects (2, 0x64ea4c, 1, 0, 0, 0, (nil),
0x64ea1c): stub
...
<spam>
--- snip ---
The driver creates a secondary "system thread" using PsCreateSystemThread()
which calls KeWaitForMultipleObjects().
Only in case of STATUS_SUCCESS return value the loop is exited and the driver
is happy, probably waiting for ioctls from client.
Download: http://gpsgate.com/download
$ sha1sum GpsGateClient.exe
bd5ac140199054a7b4502994439fcc78009fee35 GpsGateClient.exe
$ du -sh GpsGateClient.exe
2.5M GpsGateClient.exe
$ wine --version
wine-3.2-173-gea82a00a42
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=29721
Bug #: 29721
Summary: makecert from Windows Platform SDK 7.1 crashes due to
unimplemented function mssign32.dll.PvkGetCryptProv
Product: Wine
Version: 1.4-rc1
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,
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Microsoft SDKs/Windows/v7.1/Bin
...
$ wine ./makecert.exe foo
...
wine: Call from 0x7b83924f to unimplemented function
mssign32.dll.PvkGetCryptProv, aborting
wine: Unimplemented function mssign32.dll.PvkGetCryptProv called at address
0x7b83924f (thread 0009), starting debugger...
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/windows/desktop/bb410253.aspx
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=29703
Bug #: 29703
Summary: Windows Live Essentials 2011 installer wants
wer.dll.WerReportSetUIOption
Product: Wine
Version: 1.3.37
Platform: x86-64
URL: http://g.live.com/1rewlive4-all/en/wlsetup-all.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
This installer crashes on exit after the following procedure:
1. Change Windows version to Win7
2. Start the installer and press space on the mostly-blank first screen
3. Installation fails - click "try again"
4. Installation fails again - click "close"
Terminal output shows:
wine: Unimplemented function wer.dll.WerReportSetUIOption called at address
0x7b83bc12 (thread 0009), starting debugger...
--
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=30220
Bug #: 30220
Summary: Unhandled Priveleged instruction when starting Minitab
16
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: prabhjotsbhatia(a)gmail.com
Classification: Unclassified
The following error is printed to the terminal when I startup Minitab 16.
However, there is no effect on the GUI and the application continues to work as
normal. Bug 30219 could be related.
$ env WINEPREFIX=/home/prabhjot/.myWineBottles/Minitab16/ wine "C:\Program
Files\Minitab\Minitab 16\Mtb.exe"
fixme:ntoskrnl:KeInitializeMutex stub: 0x5b4a80, 0
fixme:ntoskrnl:KeWaitForSingleObject stub: 0x5b4a80, 0, 0, 0, (nil)
wine: Unhandled privileged instruction at address 0x5adf59 (thread 0019),
starting debugger...
err:ole:CoRegisterClassObject object already registered for class
{03e42d3f-a029-4137-b411-244c669f3fbd}
fixme:richedit:IRichEditOle_fnSetHostNames stub 0x2894338 Minitab Mtb
fixme:richedit:IRichEditOle_fnSetHostNames stub 0x2894338 Minitab Project
Manager
fixme:richedit:ME_HandleMessage EM_SETTARGETDEVICE doesn't use non-NULL target
devices
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x32f9d8,0x32f9dc): stub
fixme:shell:SHGetFileInfoW set icon to shell size, stub
fixme:shell:SHGetFileInfoW set icon to shell size, stub
fixme:ole:CoResumeClassObjects stub
--
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=18660
Summary: .NET app needs SystemParametersInfoW(
SPI_GETDROPSHADOW) handled
Product: Wine
Version: 1.1.22
Platform: Other
URL: http://www.codeproject.com/KB/mobile/UMPCOptimizedSamp
le.aspx
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
a .NET 3.0 app dies due to SystemParametersInfoW( SPI_GETDROPSHADOW) not
handled:
--- snip ---
fixme:system:SystemParametersInfoW Unimplemented action: 4132
(SPI_GETDROPSHADOW)
--- snip ---
and managed backtrace:
--- snip ---
Unhandled Exception: System.ComponentModel.Win32Exception: Invalid SPI
parameter
at System.Windows.SystemParameters.get_DropShadow()
at System.Windows.SystemResourceKey.get_Resource()
at System.Windows.SystemResources.FindResourceInternal(Object key, Boolean
allowDeferredResourceReference, Boolean mustReturnDeferredResourceReference)
at System.Windows.FrameworkElement.FindResourceInternal(FrameworkElement fe,
FrameworkContentElement fce, DependencyProperty dp, Object resourceKey, Object
unlinkedParent, Boolean allowDeferredResourceReference, Boolean
mustReturnDeferredResourceReference, DependencyObject boundaryElement, Boolean
isImplicitStyleLookup, Object& source)
...
--- snip ---
Handling SPI_GETDROPSHADOW keeps the app happy (returning hard coded bool for a
start).
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=38756
Bug ID: 38756
Summary: FutureMark SystemInformation diagnostics (.NET 4.0
app) crashes when clicking 'connect' (COM support for
'new' moniker and 'BIND_OPTS3' missing)
Product: Wine
Version: 1.7.45
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
split off from bug 27185 which is about Wine-Mono.
The installer installs the following prerequisites on its own:
* DirectX Jun 2010
* Microsoft .NET Framework 4 Client Profile 4.0.30319
* Microsoft Visual C++ 2010 x86 Redistributable 10.0.40219
.NET Framework 4.0 install only works right away if Wine-Mono has been removed
prior the install or Wine was built without Mono support as I do.
The first problem after installation is bug 15670
--- snip ---
Unhandled Exception: System.Windows.Markup.XamlParseException: The invocation
of the constructor on type 'Futuremark.PCMark7.PCMark7Gui.WelcomeWindow' that
matches the specified binding constraints threw an exception. --->
System.IO.IsolatedStorage.IsolatedStorageException: Unable to create the store
directory. (Exception from HRESULT: 0x80131468)
at
System.IO.IsolatedStorage.IsolatedStorageFile.GetRootDir(IsolatedStorageScope
scope, StringHandleOnStack retRootDir)
at
System.IO.IsolatedStorage.IsolatedStorageFile.InitGlobalsNonRoamingUser(IsolatedStorageScope
scope)
at
System.IO.IsolatedStorage.IsolatedStorageFile.GetRootDir(IsolatedStorageScope
scope)
at
System.IO.IsolatedStorage.IsolatedStorageFile.GetGlobalFileIOPerm(IsolatedStorageScope
scope)
at System.IO.IsolatedStorage.IsolatedStorageFile.Init(IsolatedStorageScope
scope)
at Futuremark.BenchmarkUtility.Identifier.set_Key(String value)
at Futuremark.PCMark7.PCMarkEssence.LicenseManager.ValidateKey(String key,
Boolean online)
at Futuremark.PCMark7.PCMarkEssence.LicenseManager..ctor(IOnlineMessenger
onlineMessenger)
at Futuremark.PCMark7.PCMarkEssence.UIController..ctor()
at Futuremark.PCMark7.PCMark7Gui.WelcomeWindow..ctor()
--- End of inner exception stack trace ---
--- snip ---
Next problem:
--- snip ---
002d:Call user32.MessageBoxW(00000000,0106f914 L"Initializing Futuremark
SystemInfo failed.\nPlease verify that version 4.0 or newer is installed
properly.",0106fea8 L"PCMark 7 - SystemInfo failure",00000000) ret=0545b07f
--- snip ---
http://community.futuremark.com/forum/showthread.php?181303-Problem-futurem…
Looks like a separate (COM) service component.
Trying to use the diagnosis tool which ought to connect to the service also
fails:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Futuremark/Futuremark SystemInfo
$ wine ./FMSIDiag.exe
...
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000401,(nil),0x0001,0x00000000,0x33bcac,(nil)):
stub
err:eventlog:ReportEventW L"Application: FMSIDiag.exe\nFramework Version:
v4.0.30319\nDescription: The application requested process termination through
System.Environment.FailFast(string message).\nMessage: Unrecoverable system
error.\nStack:\n at System.Environment.FailFast(System.String)\n at
MS.Internal.Invariant.FailFa"...
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
--- snip ---
-> bug 32323 ('winetricks -q corefonts')
Running it again:
--- snip ---
...
Unhandled Exception: FMSIDiag.SystemInfoException: SystemInfo initialization
failed.
at FMSIDiag.SystemInfo2.Init(Boolean tryElevate)
at FMSIDiag.SystemInfo2.Init()
at FMSIDiag.Core.Connect()
at FMSIDiag.MainWindow.buttonBasicConnect_Click(Object sender,
RoutedEventArgs e)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target,
RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source,
RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender,
RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)
at System.Windows.Controls.Primitives.ButtonBase.OnClick()
at System.Windows.Controls.Button.OnClick()
--- snip ---
First-chance exception caught with managed debugger:
--- snip ---
Child SP IP Call Site
0559ce14 7b8455e1 [HelperMethodFrame: 0559ce14]
0559ce64 05039207 DomainBoundILStubClass.IL_STUB_PInvoke(System.String,
BIND_OPTS3 ByRef, System.Guid)
0559ce68 0503904c [InlinedCallFrame: 0559ce68]
FMSIDiag.UACManager.CoGetObject(System.String, BIND_OPTS3 ByRef, System.Guid)
0559cf38 0503904c FMSIDiag.UACManager.LaunchCOMObject(System.Guid, System.Guid)
0559cfac 05038dbd FMSIDiag.SystemInfo2.ThreadInit(Boolean)
...
--- snip ---
Relevant part of trace log:
--- snip ---
0040:Call ole32.CoGetObject(00dce0ac
L"new:{f9c82199-b002-41b4-8b00-0f1eca89425f}",054bce6c,054bcee8,054bce64)
ret=053a0e78
...
0040:Ret ole32.CoGetObject() retval=80070057 ret=053a0e78
...
0040:trace:seh:raise_exception code=e0434352 flags=1 addr=0x7b8455e1
ip=7b8455e1 tid=0040
0040:trace:seh:raise_exception info[0]=80070057
0040:trace:seh:raise_exception info[1]=00000000
0040:trace:seh:raise_exception info[2]=00000000
0040:trace:seh:raise_exception info[3]=00000000
0040:trace:seh:raise_exception info[4]=79140000
0040:trace:seh:raise_exception eax=7b83247d ebx=00000005 ecx=00000014
edx=054bcc44 esi=054bcce4 edi=054bccb0
0040:trace:seh:raise_exception ebp=054bcc88 esp=054bcc24 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00200283
0040:trace:seh:call_vectored_handlers calling handler at 0x791f5a7c
code=e0434352 flags=1
...
--- snip ---
Relevant .NET code:
--- snip ---
// FMSIDiag.SystemInfo2
private void ThreadInit(bool tryElevate)
{
if (this.m_FMSI != null)
{
return;
}
this.m_FMSI = UACManager.LaunchCOMObject(
new Guid("F9C82199-B002-41B4-8B00-0F1ECA89425F"),
new Guid("93382A45-8441-4A42-BE09-95C7D0550B94"));
if (this.m_FMSI != null)
{
this.m_FuturemarkSystemInfo = (IFuturemarkSystemInfo2)this.m_FMSI;
this.m_FuturemarkSystemInfoVersion =
(IFuturemarkSystemInfoVersion)this.m_FMSI;
this.m_FuturemarkSystemInfoMultiGPU =
(IFuturemarkSystemInfoMultiGPU)this.m_FMSI;
this.m_FuturemarkSystemInfoQuery = (IFuturemarkSystemInfoQuery)this.m_FMSI;
this.m_FuturemarkSystemInfoLegacyQuery =
(IFuturemarkSystemInfoLegacyQuery)this.m_FMSI;
this.m_FuturemarkSystemInfoQueryStorage =
(IFuturemarkSystemInfoQueryStorage)this.m_FMSI;
this.m_FuturemarkSystemInfoMonitoring =
(IFuturemarkSystemInfoMonitoring)this.m_FMSI;
this.m_Initialized = true;
}
}
...
// FMSIDiag.UACManager
[return: MarshalAs(UnmanagedType.Interface)]
public static object LaunchCOMObject(Guid Clsid, Guid InterfaceID)
{
string str = Clsid.ToString("B");
string pszName = "new:" + str;
UACManager.BIND_OPTS3 bIND_OPTS = default(UACManager.BIND_OPTS3);
bIND_OPTS.cbStruct = (uint)Marshal.SizeOf(bIND_OPTS);
bIND_OPTS.hwnd = IntPtr.Zero;
bIND_OPTS.dwClassContext = 4u;
object result = null;
try
{
result = UACManager.CoGetObject(pszName, ref bIND_OPTS, InterfaceID);
}
catch (Exception)
{
result = null;
}
return result;
}
--- snip ---
Registry entry of COM server:
--- snip ---
REGEDIT4
[HKEY_CLASSES_ROOT\CLSID\{F9C82199-B002-41B4-8B00-0F1ECA89425F}]
@="Futuremark SystemInfo v2 Class"
"AppID"="{1BF1C030-CE12-4A8A-A4E1-EDDCE7176799}"
"LocalizedString"="@C:\\Program Files\\Futuremark\\Futuremark
SystemInfo\\FMSISvc.exe,-101"
[HKEY_CLASSES_ROOT\CLSID\{F9C82199-B002-41B4-8B00-0F1ECA89425F}\LocalService]
@="\"C:\\Program Files\\Futuremark\\Futuremark SystemInfo\\FMSISvc.exe\""
[HKEY_CLASSES_ROOT\CLSID\{F9C82199-B002-41B4-8B00-0F1ECA89425F}\ProgID]
@="FuturemarkSystemInfo2.1"
[HKEY_CLASSES_ROOT\CLSID\{F9C82199-B002-41B4-8B00-0F1ECA89425F}\Programmable]
[HKEY_CLASSES_ROOT\CLSID\{F9C82199-B002-41B4-8B00-0F1ECA89425F}\TypeLib]
@="{0E985ACA-E998-460F-B705-8436E606F78C}"
[HKEY_CLASSES_ROOT\CLSID\{F9C82199-B002-41B4-8B00-0F1ECA89425F}\VersionIndependentProgID]
@="FuturemarkSystemInfo2"
--- snip ---
Article:
http://chrison.net/UACElevationInManagedCodeStartingElevatedCOMComponents.a…
("UAC Elevation in Managed Code: Starting Elevated COM Components")
which is courtesy of:
https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/5706957f-b96b…
Although the app .NET class is called 'UACManager' the code seems to contradict
this. The elevation moniker syntax is not used:
MSDN:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms679687%28v=vs.85…
--- snip ---
Elevation:Administrator!new:{guid}
Elevation:Highest!new:{guid}
--- snip ---
What's new is the use of the 'new' moniker though:
http://thrysoee.dk/InsideCOM+/ch11e.htm ("The New Moniker")
and BIND_OPTS3:
MSDN:
https://msdn.microsoft.com/en-us/library/windows/desktop/aa746553%28v=vs.85…
$ sha1sum PCMark_7_v104_installer.zip
1a13ea91439ae4d81a153ca777ecb74e42394015 PCMark_7_v104_installer.zip
$ du -sh PCMark_7_v104_installer.zip
304M PCMark_7_v104_installer.zip
$ wine --version
wine-1.7.45
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=42243
Bug ID: 42243
Summary: 3DMark11 installer crashes with access violation in
Freetype because font data is released too early
Product: Wine
Version: 2.0-rc5
Hardware: x86
URL: https://ftp.computerbase.de/dl-856/UeQSx5zAJUXrxV_B1iD
Xuw/1484758851/3DMark11-v1-0-132.zip
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: sebastian(a)fds-team.de
CC: bunglehead(a)gmail.com
Distribution: ---
The installer needs a Wine prefix with dotnet40 and Windows version set to
Windows 7. On one of my machines everything works as expected, on the other one
I'm getting an access violation in Freetype. Relevant lines from the terminal
output:
--- snip ---
003a:trace:dwrite:init_freetype FreeType version is 2.6.3
[...]
003a:trace:dwrite:dwritefontface_GetGdiCompatibleGlyphMetrics
(0x101499f8)->(15.00 1.00 (nil) 0 0x11fb140 8 0x11fb15c 0)
003a:trace:dwrite:dwritefontface_GetDesignGlyphMetrics (0x101499f8)->(0x11fb140
1 0x438c9d4 0)
003a:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7db2a994
ip=7db2a994 tid=003a
003a:trace:seh:raise_exception info[0]=00000000
003a:trace:seh:raise_exception info[1]=0204d620
003a:trace:seh:raise_exception eax=0204d620 ebx=00000173 ecx=7dbb8000
edx=00000000 esi=7db7f840 edi=7db27800
003a:trace:seh:raise_exception ebp=7cccc420 esp=0438c530 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00210207
[...]
wine: Unhandled page fault on read access to 0x0204d620 at address 0x7db2a994
(thread 003a), starting debugger...
[...]
Backtrace:
=>0 0x7db2a994 TT_RunIns+0xf4() in libfreetype.so.6 (0x7cccc420)
1 0x7db2de84 in libfreetype.so.6 (+0x28e83) (0x0438c6a4)
2 0x7db2dfb4 in libfreetype.so.6 (+0x28fb3) (0x7cc867a0)
3 0x7db17c58 FT_Load_Glyph+0x187() in libfreetype.so.6 (0x0438c7e8)
4 0x7db684e6 in libfreetype.so.6 (+0x634e5) (0x7cc91be0)
5 0x7db6827f in libfreetype.so.6 (+0x6327e) (0x7cc00ee0)
6 0x7db67984 in libfreetype.so.6 (+0x62983) (0x7cc9b448)
7 0x7db692bb FTC_ImageCache_Lookup+0x21a() in libfreetype.so.6 (0x7cc9b448)
8 0x7cf4f18b freetype_get_glyph_advance+0x91(fontface=0x101499f8,
emSize=15.000000, index=0x26, mode=DWRITE_MEASURING_MODE_GDI_CLASSIC)
[.../dlls/dwrite/freetype.c:798] in dwrite (0x0438c9a8)
--- snip ---
Further debugging revealed that the actual problem is in face_requester(). The
memory address lies within a range previously passed to FT_New_Memory_Face.
--- snip ---
hr = IDWriteFontFileStream_ReadFileFragment(stream, &data_ptr, 0,
data_size, &context);
if (FAILED(hr)) {
fterror = FT_Err_Invalid_Stream_Read;
goto fail;
}
index = IDWriteFontFace_GetIndex(fontface);
fterror = pFT_New_Memory_Face(library, data_ptr, data_size, index, face);
IDWriteFontFileStream_ReleaseFileFragment(stream, context);
--- snip ---
The file fragment is released immediately after creating the new font face,
which should not be a problem for the builtin implementation. In this case
however it seems that the application is using its own implementation which
deallocates memory in ReleaseFileFragment. The freetype docs say: """You must
not deallocate the memory before calling FT_Done_Face."""
Commenting out the line with IDWriteFontFileStream_ReleaseFileFragment fixes
the crash.
$ sha256sum 3DMark11-v1-0-132.zip
0a375c6b024deddf3f805ec26a308eaa6b1f6a4f898fe972407d40dcee4ca078
3DMark11-v1-0-132.zip
Tested with Wine version 2.0-rc5.
--
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=38411
Bug ID: 38411
Summary: Infinite wait for start
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: isakov-sl(a)bk.ru
err:ntdll:RtlpWaitForCriticalSection section 0x9f0060 "heap.c:
HEAP.critSection" wait timed out in thread 0063, blocked by 005d, retrying (60
sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7bc9801c "loader.c:
loader_section" wait timed out in thread 0050, blocked by 0063, retrying (60
sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7bc9801c "loader.c:
loader_section" wait timed out in thread 0051, blocked by 0063, retrying (60
sec)
What is the reason to wait 60sec again and again if we have emulated hardware?
--
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=43857
Bug ID: 43857
Summary: WoW PTR 7.3.2 crashes on startup
Product: Wine
Version: 2.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blue-t(a)web.de
Distribution: ---
Created attachment 59417
--> https://bugs.winehq.org/attachment.cgi?id=59417
Picture of the error window
When i start the current WoW PTR client it takes quite some time to display
anything and then crashes
--
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=47889
Bug ID: 47889
Summary: user32:edit fails on Win 8.1 since the RX 460 GPU got
installed
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
user32:edit fails on cw-rx460 / Windows 8.1 since the RX 460 GPU got installed
(2019-09-25):
edit.c:3127: Test failed: expected 1, got 0
edit.c:3129: Test failed: expected 1, got 0
edit.c:3131: Test failed: expected 005E0054, got 00000000
edit.c:3133: Test failed: expected 1, got 0
edit.c:3139: Test failed: got 21
edit.c:3145: Test failed: got 21
https://test.winehq.org/data/tests/user32:edit.html
See also bug 47888 about the user32:clipboard failures which started at the
same time.
--
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=30623
Bug #: 30623
Summary: iTunes 10.6.1 UI corruption
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: medasaro(a)comcast.net
Classification: Unclassified
Created attachment 40098
--> http://bugs.winehq.org/attachment.cgi?id=40098
iTunes 10.6.1 Running on Wine 1.5.3 showing UI corruption
Install iTunes 10.6.1 into a clean wine prefix using the latest wine version
and no changes to the default setup (Windows version set to WINXP). iTunes will
install and launch, but the main window is mostly black and missing buttons /
features. See the attached screenshot.
--
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=48340
Bug ID: 48340
Summary: RadiAnt DICOM Viewer cannot export series to MP4 video
Product: Wine
Version: 5.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mfplat
Assignee: wine-bugs(a)winehq.org
Reporter: bozkar(a)gmail.com
Distribution: ---
Movie export to MP4 video does not work under Wine 5.0~rc1-staging in RadiAnt
DICOM Viewer 5.5.0 64 bit
As far as I tested RadiAnt on wine it never did.
Console output:
00b4:fixme:mfplat:MFCreateSinkWriterFromURL L"Z:\\home\\<cut>\\MOVIE-0003.mp4",
0000000000000000, 0000000000000000, 000000000396EF28.
I suppose that such export is probably not implemented at this point.
To reproduce: Open any example CT series in RadiAnt DICOM viewer, export
series, pick "MP4 (movie)", directory, and click save, nothing happens.
--
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=22392
Summary: 3dmark03, 3dmark06 crash on startup when trying to get
system info
Product: Wine
Version: 1.1.43
Platform: x86
URL: http://www.futuremark.com/download/3dmark03/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The log from 3dmark03 looks like
0009:Call ole32.CoGetObject(0032f448
L"Elevation:Administrator!new:{F21AABF7-4F63-48FB-9524-822429922224}",0032f410,1003d200,00d995f4)
ret=10013222
...
err:ole:CoGetClassObject no class object {f21aabf7-4f63-48fb-9524-822429922224}
could be created for context 0x4
0009:Ret ole32.CoCreateInstance() retval=80040152 ret=10013233
0009:Call user32.MessageBoxA(00000000,1003d250 "Errors occured while
initializing Futuremark SystemInfo. Please make sure the software is properly
installed. For latest Futuremark SystemInfo, please see
www.futuremark.com.",1003d300 "Error",00000000) ret=10013252
which sounds like we're missing a funky com feature,
the COM Elevation Moniker
http://msdn.microsoft.com/en-us/library/ms679687(VS.85).aspx
This must have been added in the most recent update of the app;
I'm running build 3.6.0, which is quite recent. (I can't find
the old version.)
You can bypass this on sysmark06 with -nosysteminfo (note the single dash),
but I can't seem to bypass it on sysmark03.
--
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=47003
Bug ID: 47003
Summary: 3d mark crashes during startup
Product: Wine
Version: 4.0-rc7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jonas.vejlin(a)gmail.com
Distribution: ---
Created attachment 64164
--> https://bugs.winehq.org/attachment.cgi?id=64164
crash report
3d mark crashes during startup. See the attached log
--
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=36715
Bug ID: 36715
Summary: 3dmark 2003 needs
msvcp70.dll.??8std@@YA_NABV?$basic_string@DU?$char_tra
its@D@std@@V?$allocator@D@2@@0@PBD@Z
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
continuation of bug 36540
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Futuremark/3DMark03
$ wine ./3DMark03.exe
wine: Call from 0x7b83ac57 to unimplemented function
msvcp70.dll.??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z,
aborting
wine: Unimplemented function
msvcp70.dll.??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z
called at address 0x7b83ac57 (thread 0026), starting debugger...
--- snip ---
$ sha1sum 3DMark03_v360_1901.exe
du 46a439101ddbbe3c9563b5e9651cb61b46ce0619 3DMark03_v360_1901.exe
$ du -sh 3DMark03_v360_1901.exe
182M 3DMark03_v360_1901.exe
$ wine --version
wine-1.7.19-154-g80a29e2
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=36540
Bug ID: 36540
Summary: 3dmark 2003 -nosysteminfo: crash at startup
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: darkbasic(a)linuxsystems.it
Created attachment 48630
--> http://bugs.winehq.org/attachment.cgi?id=48630
backtrace
I'm using Stefan Dösinger's branch (https://github.com/stefand/wine) but it
crashes even if I disable d3d stream in regedit.
Attached backtrace. 3dmark 2001/2005/2006 work flawlessly.
--
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=43533
Bug ID: 43533
Summary: Keepass 2.36 crashes on opening the KeePass.exe
Product: Wine
Version: 2.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adityahoige(a)gmail.com
Distribution: ---
Created attachment 58930
--> https://bugs.winehq.org/attachment.cgi?id=58930
Log file saved after crash
I just installed keepass 2.36 using the windows installer exe. I already had
wine dev installed with mono-complete and gecko installed too. After
installation i get the crash and it never runs.I have attached a log. In the
Keepass website it says that keepass is compatible with wine and mono.
--
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=44587
Bug ID: 44587
Summary: TradeStation Setup Wizard ended prematurely
Product: Wine
Version: 3.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: christopher.m.penalver(a)gmail.com
Distribution: ---
Created attachment 60566
--> https://bugs.winehq.org/attachment.cgi?id=60566
winecrash.txt
As per attached log, running TradeStation installer with Wine development ends
prematurely.
I simply updated latest Ubuntu version fully, installed wine from default
repositories, and immediately ran the installer with no modifications of any
kind.
This doesn't happen with the same file in Windows 10 x64.
apt-cache policy wine-development
wine-development:
Installed: 3.2-1
Candidate: 3.2-1
Version table:
*** 3.2-1 500
500 http://us.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages
500 http://us.archive.ubuntu.com/ubuntu bionic/universe i386 Packages
100 /var/lib/dpkg/status
Installer:
http://update.tradestation.com/Installs/TradeStation/10.00.00.567/TradeStat…
get-filehash "TradeStation Setup.exe"
Algorithm Hash
Path
--------- ----
----
SHA256
8AE5ABEE163E75634FAAEAB6E9E878FD03ED20116E3B072A1226654D683D06A7
\\ds\c\TradeStation 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.
http://bugs.winehq.org/show_bug.cgi?id=10365
Summary: Nero 7 essentials fails to install
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.nero.com/enu/index.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
Created an attachment (id=9036)
--> (http://bugs.winehq.org/attachment.cgi?id=9036)
1st dialog
When trying to install nero 7 essentials a dialog box pops up saying it could
not complete an msi query, then it is followed up by an msiexec error dialog.
--
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=28954
Bug #: 28954
Summary: Isntallation os several system programs needed by NERO
10 fails
Product: Wine
Version: 1.2.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ponchorat1968(a)hotmail.com
Classification: Unclassified
Created attachment 37225
--> http://bugs.winehq.org/attachment.cgi?id=37225
Screenshot of the error on installing NERO 10 Suite
Installing NERO 10 needs several Windows operating programs to work properly
but fails on installing MSI 4.5 for Windows XP
--
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=35722
Bug ID: 35722
Summary: MS Visual C++ 2008 Redistributable KB-hotfix
installer, part of Nero 10 installer crashes on
unimplemented function msi.dll.MsiRemovePatchesW
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says ...
Encountered after multiple KB-hotfix sub-installers have already been run.
Prerequisite: 'winetricks -q dotnet35sp1'
Not really critical, the main installer still proceeds further until finally
refusing because the builtin activation code is time-bombed (already expired).
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+msi wine ./Nero-10.0.13100_trial.exe >>log.txt
2>&1
...
0040:Call KERNEL32.CreateProcessA(00000000,001326e0 "msiexec /i vcredist.msi
/qb!",00000000,00000000,00000000,00000020,00000000,00000000,0033fb0c,0033f8d4)
ret=01004d01
...
0042:Call KERNEL32.__wine_kernel_init() ret=7bc5a3aa
0040:Ret KERNEL32.CreateProcessA() retval=00000001 ret=01004d01
...
0042:Call msi.MsiDeterminePatchSequenceW(0020f1e8
L"{9A1027CE-83F6-3CB2-B9BA-9DA38D0907D0}",00000000,00000001,00000001,0066e6a4)
ret=0041716d
0042:trace:msi:MsiDeterminePatchSequenceW
L"{9A1027CE-83F6-3CB2-B9BA-9DA38D0907D0}", (null), 1, 1, 0x66e6a4
0042:Call ole32.CLSIDFromString(0020f1e8
L"{9A1027CE-83F6-3CB2-B9BA-9DA38D0907D0}",0066dcd8) ret=7e1d169a
0042:Ret ole32.CLSIDFromString() retval=00000000 ret=7e1d169a
0042:trace:msi:MSIREG_OpenInstallProps
L"{9A1027CE-83F6-3CB2-B9BA-9DA38D0907D0}" squished
L"EC7201A96F382BC39BABD93AD890700D"
...
0042:Call advapi32.RegOpenKeyExW(80000002,0066dd3a
L"Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\UserData\\S-1-5-21-0-0-0-1000\\Products\\EC7201A96F382BC39BABD93AD890700D\\InstallProperties",00000000,000f013f,0066e5e4)
ret=7e1d3c1b
0042:Ret advapi32.RegOpenKeyExW() retval=00000002 ret=7e1d3c1b
0042:Ret msi.MsiDeterminePatchSequenceW() retval=0000064a ret=0041716d
...
0042:Call KERNEL32.RaiseException(80000100,00000001,00000002,0066e734)
ret=7e1f8221
0042:trace:seh:raise_exception code=80000100 flags=1 addr=0x7b83a9c3
ip=7b83a9c3 tid=0042
0042:trace:seh:raise_exception info[0]=7e1f8240
0042:trace:seh:raise_exception info[1]=7e1f850a
wine: Call from 0x7b83a9c3 to unimplemented function msi.dll.MsiRemovePatchesW,
aborting
...
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/aa370376%28v=vs.85%29.aspx
$ sha1sum Nero-10.0.13100_trial.exe
a69250e194381afeae7202180056b549b7d6914b Nero-10.0.13100_trial.exe
$ du -sh Nero-10.0.13100_trial.exe
293M Nero-10.0.13100_trial.exe
$ wine --version
wine-1.7.13-186-g049f08f
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=49803
Bug ID: 49803
Summary: WIDL cannot import TLBs stored as resources in PE,
such as stdole32.tlb and stdole2.tlb (even tuough both
have tlb extension, they are essentially PE)
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: kolan_n(a)mail.ru
Distribution: ---
WIDL cannot import TLBs stored as resources in PE, such as stdole32.tlb and
stdole2.tlb (even tuough both have tlb extension, they are essentially PE).
Workaround 1 (I use it, since in order to use most IDLs one has to use wine
sources): fetch Wine sources and just recompile them (the matter is a bit
complicated because the IDLs have different names)
Workaround 2: use 7zip to extract TLBs from PE resources
--
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=47119
Bug ID: 47119
Summary: winedbg truncates 64-bit address when compiled with
mingw
Product: Wine
Version: 4.5
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
Running "winedbg notepad" with a mingw-compiled winedbg on windows:
Wine-dbg>break *0x123456789
Invalid address 0x0000000023456789, can't set breakpoint
--
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=46512
Bug ID: 46512
Summary: Window text has last letter cut off
Product: Wine
Version: 4.0
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: leslie_alistair(a)hotmail.com
Distribution: ---
Created attachment 63363
--> https://bugs.winehq.org/attachment.cgi?id=63363
Image to show the problem.
Run regedit.
In the tree, the HKEY_* items all have the last letter cut off.
If you remove the FT_LOAD_TARGET_LCD flag from
WINE_GGO_HRGB_BITMAP/WINE_GGO_HBGR_BITMAP, then the tree draws as expected.
Some windows applications have their Title cutoff also.
7da7930a10f22cf186e9454fec2807d75f239fad is the first bad commit
commit 7da7930a10f22cf186e9454fec2807d75f239fad
Author: Byeongsik Jeon <bsjeon(a)hanmail.net>
Date: Tue Nov 13 09:27:09 2018 +0000
gdi32: Specify the suitable hinting flags explicitly.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=41639
Signed-off-by: Byeongsik Jeon <bsjeon(a)hanmail.net>
Signed-off-by: Huw Davies <huw(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
--
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=45130
Bug ID: 45130
Summary: Builtin xaudio2_7.dll break audio and slow down
performance for some games since wine 3.5
Product: Wine
Version: 3.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: andy86(a)fastwebnet.it
CC: tonix64(a)inventati.org
Distribution: ArchLinux
Created attachment 61316
--> https://bugs.winehq.org/attachment.cgi?id=61316
log with +loaddll,+dll,+xaudio2 with wine 3.7
Since wine 3.5 set xaudio2_7 as builtin break audio for some games (legend of
kay, gray matter) and slow down performance (visible fps drop).
Maybe a regressions from bug 39021, but I use binaries package.
Note that "winetricks xact" install work native dll, but do not auto set
override for 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=22260
Summary: Editable dropdown is gray when opened and empty
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
I noticed in Total Commander: Press F5 to copy a file, then click the "Only
files of this type:" dropdown BUTTON (see attached screenshot). Notice the
dropdown field turns gray. This does not happen on Windows XP, where it remains
white. If you type anything it turns white again, like it should..
Total Commander 4.50a
--
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=21572
Summary: KFSensor 4.5.0 Professional Trial: Trouble starting
and stopping the service
Product: Wine
Version: 1.1.37
Platform: x86-64
URL: http://www.keyfocus.net/kfsensor/download/kfsens40.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=26016)
--> (http://bugs.winehq.org/attachment.cgi?id=26016)
advapi and more -- Operation Failure
This one is a fairly erratic but greatly prolific bug. In the log attached, you
see my first launch of the application works after running the wizard, followed
by closing the application and attempting to start the server to no avail until
you see the "LockWindowUpdate" when it finally starts.
--
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=45443
Bug ID: 45443
Summary: Diablo 3: Starting the game causes a black screen
softlock on the X-environment
Product: Wine
Version: 3.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
Created attachment 61776
--> https://bugs.winehq.org/attachment.cgi?id=61776
Terminal output
On starting Diablo 3 I usually see a gray fullscreen before the game loads its
ingame-login screen. But with Wine 3.12 it stops at the gray screen (which
turns black if switched to the console and back). There are a few symptoms:
- Terminating all applications in Wine does not prevent the black screen to go
away or Wine to exit.
- The winedevices.exe does not respond to a SIGTERM and needs to be terminated
with a SIGKILL.
- Wine still refuses to exit automatically even if only the wineserver64
remains.
- After terminating all processes and switching from the console to the
X-environment again the screen is still black (not sure if this is caused by
Wine or if this is a bug in the X-Server).
In the attachments is the terminal output which I had to log to disk (the game
was started via "sworddragon@ubuntu:/wine/drive_c/Program Files (x86)/Diablo
III$ setarch i386 -3 './Diablo III.exe' -launch -opengl").
--
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=30498
Bug #: 30498
Summary: Shadows broken on many games because of wrong depth
formats
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tizbac2(a)gmail.com
Classification: Unclassified
D3DCMP_EQUAL and D3DCMP_NOTEQUAL are broken when used with incompatible depth
format, and that breaks shadows on all CryEngine games, on MAFIA 2, and
probably many other games
On the logs the line "fixme:d3d:state_zfunc D3DCMP_NOTEQUAL and D3DCMP_EQUAL do
not work correctly yet." will appear when this bug is causing problems
--
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=49409
Bug ID: 49409
Summary: Monkey Island 2 Special Edition crash / freeze with
staging
Product: Wine-staging
Version: 5.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: spoon0042(a)hotmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Got this while trying to help someone on the forums, stable / devel seem fine
but staging tends to freeze after not too long with this output on terminal:
wine client error:318: read: Bad address
wine client error:318: write: Bad file descriptor
Using the Steam version here, usually just start a new game and wait and it
will freeze before you can even do anything.
I attempted a regression test but didn't get anywhere. At some steps it would
crash or freeze in a different way, both with and without the usual wine crash
dialog.
--
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=38278
Bug ID: 38278
Summary: Multiple apps and games need wmvcore.dll.WMReader_Open
implementation (Nail'd demo)
Product: Wine
Version: 1.7.39
Hardware: x86
URL: http://www.gamershell.com/news_111686.html
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wmp&wmvcore
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: ---
The game installs just fine, but fails to run, just giving a black screen.
Terminal shows:
fixme:system:SystemParametersInfoW Unimplemented action: 59 (SPI_SETSTICKYKEYS)
fixme:thread:SetThreadIdealProcessor (0xfffffffe): stub
fixme:thread:SetThreadIdealProcessor (0xc0): stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33e7f8,0x00000000), stub!
err:ole:CoGetClassObject class {b802058a-464a-42db-bc10-b650d6f2586a} not
registered
err:ole:CoGetClassObject no class object {b802058a-464a-42db-bc10-b650d6f2586a}
could be created for context 0x1
fixme:wmvcore:WMReader_Open (0x48c97f0)->(L"c:/program
files/naild/haste/data/menu/movies/deepsilver_techland_1280x720.wmv" 0x1feaf24
(nil))
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
fixme:xinput:XInputGetState (0 0x1fec018)
--
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=31909
Bug #: 31909
Summary: Copistar needs Win32_NetworkAdapter WMI class
'AdapterType' property
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wmi&wbemprox
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
as the summary already says ...
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Copistar2
...
$ WINEDEBUG=+tid,+seh,+wbemprox wine ./Copistar.exe
...
0023:trace:wbemprox:wbem_services_ExecQuery 0x1450b8, L"WQL", L"SELECT
MACAddress FROM Win32_NetworkAdapter WHERE (AdapterType = \"Ethernet 802.3\")
AND (MACAddress IS NOT NULL) AND PNPDeviceId LIKE \"%PCI%\"", 0x00000030,
(nil), 0xb6e888
0023:trace:wbemprox:fill_networkadapter created 5 rows
0023:trace:wbemprox:parse_query wql_parse returned 0
0023:trace:seh:raise_exception code=e06d7363 flags=1 addr=0x7b83989b
ip=7b83989b tid=0023
0023:trace:seh:raise_exception info[0]=19930520
0023:trace:seh:raise_exception info[1]=00b6e890
0023:trace:seh:raise_exception info[2]=003836c8
0023:trace:seh:raise_exception eax=7b826719 ebx=7b8b16b0 ecx=19930520
edx=00b6e7d0 esi=80041017 edi=00145118
0023:trace:seh:raise_exception ebp=00b6e814 esp=00b6e7b0 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000283
--- snip ---
Probably part of their product activation scheme.
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=23960
Summary: ABScreen.exe needs gdi+
System.Drawing.Region.GetRegionScans
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://minemap.golbarg.fr/ABBackground/ABScreen.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
On startup:
System.NotImplementedException: Not implemented.
at System.Drawing.Region.GetRegionScans(Matrix matrix)
at System.Windows.Forms.LinkLabel.OnPaint(PaintEventArgs e)
at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e,
Int16 layer, Boolean disposeEventArgs)
at System.Windows.Forms.Control.WmPaint(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.Label.WndProc(Message& m)
at System.Windows.Forms.LinkLabel.WndProc(Message& msg)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr
wparam, IntPtr lparam)
minor since it doesn't seem to crash the app or anything.
--
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=23759
Summary: fixme:reg:GetNativeSystemInfo
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eggert.ehmke(a)ftv-spandau.de
Created an attachment (id=29776)
--> (http://bugs.winehq.org/attachment.cgi?id=29776)
wine error message and stack
I try to run the installer of flarmcfgtool:
http://www.segelflug-software.de/flarmcfg/
Before I have installed the Windows versionn of Mono:
http://www.go-mono.com/mono-downloads/download.html
The install runs fine. When I start the application, I get a fixme (see
attachment)
--
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=21798
Summary: SEHException / GdipGetRegionScansCount opening
AutoWikiBrowser
Product: Wine
Version: 1.1.39
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rjwilmsi(a)gmail.com
Created an attachment (id=26364)
--> (http://bugs.winehq.org/attachment.cgi?id=26364)
AWB stack trace
Opening Autowikibrowser 5.0.0.0 (download from
http://sourceforge.net/projects/autowikibrowser/) with wine 1.1.39 leads to an
exception over SEHException / GdipGetRegionScansCount. This did not occur with
wine 1.1.35
Stack trace from Autowikibrowser attached.
Wine 1.1.39, winetricks dotnet20 ie6, opensuse 11.2 64 bit.
--
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=16491
Summary: monthcal: MONTHCAL_GetMonthRange not implemented
Product: Wine
Version: 1.1.10
Platform: All
URL: http://www.pindersoft.com/dotnettest.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
just a small showcase bug.
Someone emailed me a link to a .NET test app to check its "usefulness".
That app isn't sophisticated nor particularly useful at all (despite its name).
Just a small GUI app with month calendar and hyperlink control.
Its only purpose seems to be to show Wine month calendar control insufficiency
;-)
Steps to reproduce:
1. clean WINEPREFIX
2. sh winetricks dotnet20
3. download from: ftp://ftp.pindersoft.com/DotNetTestDNF2.zip
4. run: wine ./DotNetTestDNF2.exe
When you advance the month in calendar control (arrows), it bails.
WINEDEBUG=+tid,+seh,+monthcal
--- snip wine trace ---
...
0036:trace:monthcal:MONTHCAL_LButtonDown e00a3
0036:trace:monthcal:MONTHCAL_GoToNextMonth MONTHCAL_GoToNextMonth
0036:trace:monthcal:MONTHCAL_WindowProc hwnd=0x8009c msg=1007 wparam=1
lparam=d913cc
0036:trace:monthcal:MONTHCAL_GetMonthRange
0036:trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b8434b0
0036:trace:seh:raise_exception info[0]=80131502
0036:trace:seh:raise_exception eax=7b82c6a5 ebx=7b8b3840 ecx=00000000
edx=0032e3f0 esi=0032e3f0 edi=e0434f4d
0036:trace:seh:raise_exception ebp=0032e3b8 esp=0032e354 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000246
--- snip wine trace ---
--- snip CLR backtrace --
System.ArgumentOutOfRangeException: Year, Month, and Day parameters describe an
un-representable DateTime.
at System.DateTime.DateToTicks(Int32 year, Int32 month, Int32 day)
at System.Windows.Forms.DateTimePicker.SysTimeToDateTime(SYSTEMTIME s)
at System.Windows.Forms.MonthCalendar.GetMonthRange(Int32 flag)
at System.Windows.Forms.MonthCalendar.BoldDates(DateBoldEventArgs e)
at System.Windows.Forms.MonthCalendar.WmDateBold(Message& m)
at System.Windows.Forms.MonthCalendar.WmReflectCommand(Message& m)
at System.Windows.Forms.MonthCalendar.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr
wparam, IntPtr lparam)
--- snip CLR backtrace ---
Aric Stewart fleshed out MONTHCAL_GetMonthRange with a patch:
http://www.winehq.org/pipermail/wine-patches/2008-August/060414.html
... but it didn't make it in.
Maybe this bug report can give it the proper push ;-)
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=32232
Bug #: 32232
Summary: windows live essentials web installer does not
download packages
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: qmgr
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Classification: Unclassified
The patches from bug 32229 are required first to avoid the early crashes.
When the Status-Windows comes up, the web installer hung an is searching for
CLSID_BackgroundCopyManager3_0 (659cdea7-489e-11d9-a9cd-000d56965251)
in a loop, until the process is killed.
IBackgroundCopyManager on msdn:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa363050%28v=vs.85%…
Overview of all BITS Interfaces on msdn:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa362819%28v=vs.85%…
--
By by ... Detlef
--
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=27837
Summary: E-Bundle Transcript Viewer: crashes when opening a
supported file
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Guiding_Light87(a)hotmail.com
When I double-click the document icon or try to launch from the application
"open" command, an
error message appears saying that a serious problem has occurred and the
program needs to be closed. The program in question is West E-Transcript Bundle
Viewer (http://www.reallegal.com/download.asp).
--
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=36822
Bug ID: 36822
Summary: Multi Theft Auto: San Andreas 1.3.5 'FairplayKD.sys'
driver crashes on unimplemented function
ntoskrnl.exe.KeSetSystemAffinityThread
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntoskrnl
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says ...
--- snip ---
...
fixme:ntoskrnl:PsLookupProcessByProcessId (0x7ffc 0x53e5bc) stub
wine: Call from 0x7b83adcf to unimplemented function
ntoskrnl.exe.KeSetSystemAffinityThread, aborting
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/hardware/ff553267%28v=vs.85…
--- quote ---
The KeSetSystemAffinityThread routine sets the system affinity of the current
thread.
VOID KeSetSystemAffinityThread(
_In_ KAFFINITY Affinity
);
Parameters
Affinity [in]
A KAFFINITY-typed variable that specifies the new system affinity of the
current thread.
Return value
None
--- quote ---
$ sha1sum mtasa-1.3.5.exe
7f186543892ef0877cd568ce0935c5e9641578c8 mtasa-1.3.5.exe
$ du -sh mtasa-1.3.5.exe
21M mtasa-1.3.5.exe
$ wine --version
wine-1.7.21-3-gbf72c67
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=36821
Bug ID: 36821
Summary: Multi Theft Auto: San Andreas 1.3.5 'FairplayKD.sys'
driver continuously spams terminal due to
'PsLookupProcessByProcessId' stub
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntoskrnl
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
the kernel driver is part of 'Multi Theft Auto' v1.3.5
Release notes: https://forum.mtasa.com/viewtopic.php?f=31&t=71767
There is a constant spam on terminal:
--- snip ---
...
fixme:ntoskrnl:PsLookupProcessByProcessId (0x4 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0x8 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0xc 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0x10 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0x14 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0x18 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0x1c 0x53e5bc) stub
...
fixme:ntoskrnl:PsLookupProcessByProcessId (0x7ff8 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0x7ffc 0x53e5bc) stub
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:thread:NtQueryInformationThread info class 22 not supported yet
fixme:ntoskrnl:PsLookupProcessByProcessId (0x4 0x53e5bc) stub
fixme:ntoskrnl:PsLookupProcessByProcessId (0x8 0x53e5bc) stub
...
<repeats forever>
--- snip ---
'FairplayKD.sys' kernel driver code:
--- snip ---
00541F06 8BFF MOV EDI,EDI
00541F08 55 PUSH EBP
00541F09 8BEC MOV EBP,ESP
00541F0B 8B4D 08 MOV ECX,DWORD PTR SS:[EBP+8] ; process id to lookup
00541F0E 53 PUSH EBX
00541F0F 56 PUSH ESI
00541F10 F6C1 03 TEST CL,3
00541F13 75 42 JNZ SHORT 00541F57
00541F15 8B5D 0C MOV EBX,DWORD PTR SS:[EBP+C]
00541F18 F6C3 03 TEST BL,3
00541F1B 75 3A JNZ SHORT 00541F57
00541F1D B8 E8FD0000 MOV EAX,0FDE8 ; max pid (handle)
00541F22 3BC8 CMP ECX,EAX
00541F24 77 31 JA SHORT 00541F57
00541F26 3BD8 CMP EBX,EAX
00541F28 77 2D JA SHORT 00541F57
00541F2A 3BCB CMP ECX,EBX
00541F2C 73 29 JNB SHORT 00541F57
00541F2E 8BF1 MOV ESI,ECX
pid_loop:
00541F30 8D45 08 LEA EAX,DWORD PTR SS:[EBP+8]
00541F33 50 PUSH EAX
00541F34 56 PUSH ESI
00541F35 FF15 8C8A5400 CALL DWORD PTR DS:[548A8C] ;
PsLookupProcessByProcessId
00541F3B 85C0 TEST EAX,EAX
00541F3D 74 0B JE SHORT 00541F4A
00541F3F 83C6 04 ADD ESI,4
00541F42 3BF3 CMP ESI,EBX
00541F44 72 EA JB SHORT 00541F30
00541F46 8BC3 MOV EAX,EBX
00541F48 EB 0F JMP SHORT 00541F59
00541F4A 8B4D 08 MOV ECX,DWORD PTR SS:[EBP+8]
00541F4D FF15 888A5400 CALL DWORD PTR DS:[548A88] ; ObfDereferenceObject
00541F53 8BC6 MOV EAX,ESI
00541F55 EB 02 JMP SHORT 00541F59
00541F57 33C0 XOR EAX,EAX
00541F59 5E POP ESI
00541F5A 5B POP EBX
00541F5B 5D POP EBP
00541F5C C2 0800 RETN 8
--- snip ---
If it fails (Wine stub in this case) just go for the next process id ... genius
logic at work :)
Silencing via "trace once" might be ok for this - even if the loop is still
getting executed.
$ sha1sum mtasa-1.3.5.exe
7f186543892ef0877cd568ce0935c5e9641578c8 mtasa-1.3.5.exe
$ du -sh mtasa-1.3.5.exe
21M mtasa-1.3.5.exe
$ wine --version
wine-1.7.21-3-gbf72c67
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=38098
Bug ID: 38098
Summary: Managed (.NET) debugger fails to load symbol files
('GetFileVersionInfoExW' is a stub)
Product: Wine
Version: 1.7.36
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
continuation of bug 38090
With patch from bug 38090 applied it runs into:
--- snip ---
(28.29): C++ EH exception - code e06d7363 (first chance)
(28.29): CLR exception - code e0434f4d (first chance)
...
0009:fixme:ver:GetFileVersionInfoExW stub: 0
L"z:\\home\\focht\\downloads\\debug_symbols\\mscordacwks_x86_x86_2.0.50727.42.dll\\4333E7EC561000\\mscordacwks_x86_x86_2.0.50727.42.dll"
0 1964 0x439450
Failed to load data access DLL, 0x80004005
...
--- snip ---
The stub was committed one day later:
--- snip ---
version: Add stubs for GetFileVersionInfoExA/W.
author Austin English <austinenglish(a)gmail.com>
Tue, 23 Dec 2014 01:37:46 +0000 (19:37 -0600)
committer Alexandre Julliard <julliard(a)winehq.org>
Tue, 23 Dec 2014 14:30:50 +0000 (15:30 +0100)
commit 61fc9ac92f0dbe80e07d883a2365e16fd6f37774
tree 1b4ace4cee89aff7b8cf0a3119e8677310a9822b
parent 0029290e3e769880f2e357cf9608ac26535c29fb
--- snip ---
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=38090
Bug ID: 38090
Summary: Managed (.NET) debugger fails to load symbol files
('GetFileVersionInfoSizeExW' is a stub)
Product: Wine
Version: 1.7.36
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
found while investigating bugs with managed applications (.NET).
Dump of managed callstacks doesn't work anymore, instead the debugger prints
'Failed to load data access DLL foo, 80004005'.
--- snip ---
...
0009:Call version.GetFileVersionInfoSizeExW(00000000,00438f88
L"z:\\home\\focht\\downloads\\debug_symbols\\mscorwks.dll\\4333E7EC561000\\mscordacwks_x86_x86_2.0.50727.42.dll",0033c47c)
ret=022d643e
0009:fixme:ver:GetFileVersionInfoSizeExW stub: 0
L"z:\\home\\focht\\downloads\\debug_symbols\\mscorwks.dll\\4333E7EC561000\\mscordacwks_x86_x86_2.0.50727.42.dll"
0x33c47c
0009:Ret version.GetFileVersionInfoSizeExW() retval=00000000 ret=022d643e
0009:Call KERNEL32.SetErrorMode(00000001) ret=021e29b4
0009:Ret KERNEL32.SetErrorMode() retval=00000001 ret=021e29b4
0009:Call msvcrt._vsnwprintf(0236af88,00000040,020c65a8 L"Win32 error
0n%d",0033c718) ret=022d4956
0009:Ret msvcrt._vsnwprintf() retval=00000010 ret=022d4956
0009:Call msvcrt._vsnwprintf(0035411c,00000145,0203dbd8 L"ERROR: Unable to load
DLL %s, %s",0033c728) ret=022d4956
0009:Ret msvcrt._vsnwprintf() retval=00000050 ret=022d4956
...
0009:Call KERNEL32.MultiByteToWideChar(00000000,00000000,64273bbc "Failed to
load data access DLL, 0x%08x\n",ffffffff,00000000,00000000) ret=020ebf5b
0009:Ret KERNEL32.MultiByteToWideChar() retval=00000028 ret=020ebf5b
--- snip ---
It a regression:
http://source.winehq.org/git/wine.git/commitdiff/caaf6aafa96d1f8ac72f5e019c…
--- snip ---
author Austin English <austinenglish(a)gmail.com>
Sat, 20 Dec 2014 19:39:54 +0000 (13:39 -0600)
committer Alexandre Julliard <julliard(a)winehq.org>
Mon, 22 Dec 2014 18:18:21 +0000 (19:18 +0100)
commit caaf6aafa96d1f8ac72f5e019c4c97ef3d1958e6
tree cec676788e3b8000423aa779ed269408b9804df4
parent ef8db24b9c77bdc110c4c2b6acb4581b9fd6d193
version: Add stubs for GetFileVersionInfoSizeExA/W.
--- snip ---
It shouldn't be too hard to add an actual implementation.
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=38388
Bug ID: 38388
Summary: Visual Studio Express 2013 (12.0) installer aborts
with 'Runtime Error! R6016 - not enough space for
thread data' in Win 8.1 mode (needs ntdll.dll
'WinSqmIsOptedIn')
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
Visual Studio Express 2013 (12.0) has multiple installer blockers.
Prerequisite: 'winetricks -q dotnet40 corefonts win7'
Patch for bug 38387
The WPF 4.x based installer user-interface is unreadable in Win7 mode.
It makes heavy use of DWrite API, unearthing a couple Wine insufficiencies.
The visible part (stub noise):
--- snip ---
...
fixme:dwrite:dwritefontface_GetRecommendedRenderingMode (0x56a4580)->(12.000000
1.000000 0 0x55cd738 0xf84e1fc): stub
fixme:dwrite:dwritefactory_CreateGlyphRunAnalysis (0x211510)->(0xf84e1d8
1.000000 0xf84e21c 4 0 0.000000 0.000000 0xf84e20c): stub
...
--- snip ---
Fortunately the installer is very verbose about its doings in the log file.
%temp% -> dd_winexpress_full_<datetimestamp>.log
--- snip ---
...
[002E:002F][2015-04-10T22:54:23]i052: Condition '(VersionNT = v6.3) AND
(WindowsBuildNumber < 9600)' evaluates to false.
[002E:002F][2015-04-10T22:54:23]i052: Condition 'VersionNT < v6.3' evaluates to
true.
[002E:002F][2015-04-10T22:54:23]i052: Condition '(VersionNT = v6.3) AND
(netfxfullredist_43_DetectKey < v4.5.50709)' evaluates to false.
[002E:002F][2015-04-10T22:54:23]i052: Condition 'CompatibilityMode = 0'
evaluates to false.
[002E:002F][2015-04-10T22:54:23]i052: Condition 'RebootPending = 1' evaluates
to false.
[002E:002F][2015-04-10T22:54:23]i052: Condition 'NOT (IEsvcVersionExists) OR
(IEsvcVersion < v10.0)' evaluates to true.
[002E:002F][2015-04-10T22:54:23]i000: MUX: Stop Block: WinBlock : This version
of Visual Studio requires a computer with a
!$!http://go.microsoft.com/fwlink/?LinkID=320086&clcid=0x409,newer version of
Windows!@!.
[002E:002F][2015-04-10T22:54:23]i000: MUX: Stop Block: IE10Block : This
version of Visual Studio requires Internet Explorer 10 which is currently not
installed on your computer. Please
!$!http://go.microsoft.com/fwlink/?LinkID=320085&clcid=0x409,install Internet
Explorer 10!@! and then retry installing Visual Studio.
[002E:002F][2015-04-10T22:54:23]i000: MUX: Detect Completed
[002E:002F][2015-04-10T22:54:23]i000: MUX: Wait for View to be loaded
[002E:0038][2015-04-10T22:54:23]i000: MUX: Detect Completed, now create view
[002E:002F][2015-04-10T22:54:26]i000: MUX: View loaded
[002E:002F][2015-04-10T22:54:26]i000: MUX: Go to Blocker page.
[002E:002F][2015-04-10T22:54:26]i199: Detect complete, result: 0x0
--- snip ---
It needs Win 8.1 mode and .NET Framework 4.5 installed.
It's best to run .NET 4.5 installer directly from winetricks cache standalone
to avoid long .NET 2.x, 3.x install sequence for now.
With these requirements met, the installer aborts much early with run-time
error.
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+msi wine ./winexpress_full.exe >>log.txt 2>&1
...
002a:Call KERNEL32.CreateProcessW(001461d0
L"Z:\\home\\focht\\Downloads\\winexpress_full.exe",001465e8
L"\"Z:\\home\\focht\\Downloads\\winexpress_full.exe\" -burn.unelevated
BurnPipe.{1FC0A2CB-7160-4EDB-A330-B0CF4FBE54BC}
{4F44BA81-61F1-499A-8FCD-A00AD817497E}
41",00000000,00000000,00000000,00000000,00000000,00000000,0033f688,0033f6cc)
ret=0042f42d
...
002d:Call KERNEL32.__wine_kernel_init() ret=7bc5aa05
002a:Ret KERNEL32.CreateProcessW() retval=00000001 ret=0042f42d
...
002d:Call KERNEL32.GetModuleHandleW(0035c504 L"ntdll.dll") ret=0035c4ce
002d:Ret KERNEL32.GetModuleHandleW() retval=7bc10000 ret=0035c4ce
002d:Call KERNEL32.GetProcAddress(7bc10000,0035c4f4 "WinSqmIsOptedIn")
ret=0035c4da
002d:Ret KERNEL32.GetProcAddress() retval=00000000 ret=0035c4da
002d:trace:seh:raise_exception code=c0000005 flags=0 addr=(nil) ip=00000000
tid=002d
002d:trace:seh:raise_exception info[0]=00000008
002d:trace:seh:raise_exception info[1]=00000000
002d:trace:seh:raise_exception eax=00000000 ebx=00000000 ecx=00000006
edx=7bca6ec0 esi=0014b160 edi=7b824394
002d:trace:seh:raise_exception ebp=0033ee34 esp=0033edd8 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010202
002d:trace:seh:call_stack_handlers calling handler at 0x3a7458 code=c0000005
flags=0
002d:Call KERNEL32.GetLastError() ret=003568a6
002d:Ret KERNEL32.GetLastError() retval=0000007f ret=003568a6
...
002d:Call user32.MessageBoxW(00000000,003c12f8 L"Runtime Error!\n\nProgram:
Z:\\home\\focht\\Downloads\\winexpress_full.exe\n\nR6016\r\n- not enough space
for thread data\r\n",0039a878 L"Microsoft Visual C++ Runtime Library",00012010)
ret=003a0476
--- snip ---
$ sha1sum winexpress_full.exe
51394c6e8d4d4235396cb7933af030974e25579f winexpress_full.exe
$ du -sh winexpress_full.exe
1000K winexpress_full.exe
$ wine --version
wine-1.7.40-99-gdc22283
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=38386
Bug ID: 38386
Summary: Visual Studio Express 2013 for Windows Installer
crashed with native dotnet40
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
Created attachment 51233
--> https://bugs.winehq.org/attachment.cgi?id=51233
wrong logo.png
0. download from http://go.microsoft.com/?linkid=9832256
$ sha1sum winexpress_full.exe
52e551bf9ab3a587c5ec0f9dbaad49ffb5e5d168 winexpress_full.exe
1. winetricks -q dotnet40 to workaround bug 38385
2. The installer aborted silently
3. A wrong logo is shown
Few secones later, wine crashed
--
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=46791
Bug ID: 46791
Summary: Corel Draw X4 - Installer hangs at splash screen
Product: Wine
Version: 4.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 63810
--> https://bugs.winehq.org/attachment.cgi?id=63810
Console output on wine 4.1 (non-staging)
Hello everyone,
with a friend of a German forum I have been notified that "CorelDraw X4"
requires msxml3 and ie7 to get started.
I created a fresh wine-Prefix (32-Bit) with wine 4.1 and installed the two
components using winetricks.
winetricks msxml3 (Worked fine)
wget
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetric…
&& sh winetricks ie7 (Had to renew my script aparently)
sha256sum CorelDRAWGraphicsSuiteX4Installer_DE.exe
f61dfb1bf7b6c4c1f92d8d72d124a98e2f4af691e732094ae0295c29c67d4f55
CorelDRAWGraphicsSuiteX4Installer_DE.exe
With these two components installed I get to the splash screen and there is a
lot of console output.
--
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=11747
Summary: CorelDRAW Graphics Suite X4 Trial installer crashes
Product: Wine
Version: 0.9.56.
Platform: PC
URL: http://www.corel.com/servlet/Satellite?pagename=CorelCom
/ProcessLayout&lc=en&ppg=CorelCorp/Trials/DownloadContai
ner
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: truiken(a)gmail.com
$ wine CorelDRAWGraphicsSuiteX4Installer_EN.exe
wine: Unhandled page fault on read access to 0x00000000 at address 0x7ddf3f47
(thread 0016), starting debugger...
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x7ddf3f47).
Backtrace:
=>1 0x7ddf3f47 queryresult_get_length+0x57(iface=0x130e38, listLength=0x34f58c)
[/home/truiken/wine/dlls/msxml3/queryresult.c:277] in msxml3 (0x0034f554)
2 0x0035401b in setupxml (+0x401b) (0x005f4650)
3 0x00430049 in setup (+0x30049) (0x002f002f)
4 0x00000000 (0x00000000)
0x7ddf3f47 queryresult_get_length+0x57
[/home/truiken/wine/dlls/msxml3/queryresult.c:277] in msxml3: movl
0x0(%eax),%edx
277 *listLength = This->result->nodesetval->nodeNr;
--
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=22706
Summary: Stylizer: cannot start the program
Product: Wine
Version: 1.1.44
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shnatsel(a)gmail.com
Created an attachment (id=27979)
--> (http://bugs.winehq.org/attachment.cgi?id=27979)
Console output
Stylizer
(http://appdb.winehq.org/objectManager.php?sClass=application&iId=11499)
doesn't start - wine prints "fixme:..." messages to console. I've used
Winetricks to install .NET framework, but since it seems to be Wine problem,
I'm reporting this as Wine bug.
--
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=30397
Bug #: 30397
Summary: Spoon Studio 2011 (ex Xenocode) application sandboxing
scheme needs support for NtSetInformationFile class
FileDispositionInformation (Stylizer 5.x, Visual CSS
editor)
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
Stylizer 5.x (Visual CSS editor) is wrapped in Xenocode like sandboxing scheme,
now called "Spoon Studio 2011".
The usual native API hooking in several places.
It seems not very happy about some unimplemented NtSetInformationFile classes.
---snip ---
...
0025:Call ntdll.RtlInitUnicodeString(0032f334,008b3068
L"\\??\\C:\\users\\focht\\Local Settings\\Application
Data\\Skybound\\Stylizer\\Sandbox\\2011.12.15T20.58\\XSandbox.bin.__tmp__")
ret=0034d108
0025:Ret ntdll.RtlInitUnicodeString() retval=0032f334 ret=0034d108
0025:Call
ntdll.NtOpenFile(0032f308,00110100,0032f31c,0032f2f8,00000007,00000020)
ret=0034da48
0025:Ret ntdll.NtOpenFile() retval=00000000 ret=0034da48
0025:Call
ntdll.NtSetInformationFile(00000068,0032f300,0032f2cc,00000028,00000004)
ret=0034da84
0025:Ret ntdll.NtSetInformationFile() retval=00000000 ret=0034da84
0025:Call
ntdll.NtSetInformationFile(00000068,0032f300,0032f31b,00000001,0000000d)
ret=0034da9d
0025:fixme:ntdll:NtSetInformationFile Unsupported class (13)
0025:Ret ntdll.NtSetInformationFile() retval=c0000002 ret=0034da9d
0025:Call ntdll.NtClose(00000068) ret=0036b1d3
0025:Ret ntdll.NtClose() retval=00000000 ret=0036b1d3
...
0025:Call user32.MessageBoxW(00000000,008b2f70 L"The sandbox at
\\??\\C:\\users\\focht\\Local Settings\\Application
Data\\Skybound\\Stylizer\\Sandbox\\2011.12.15T20.58 is corrupt or inaccessible.
Please check the location and try again.",008a3f48 L"Spoon Studio
2011",00000010) ret=00396aa6
...
---snip ---
MSDN (ZwSetInformationFile):
http://msdn.microsoft.com/en-us/library/windows/hardware/ff567096%28v=vs.85…
class 13 -> FILE_DISPOSITION_INFORMATION:
http://msdn.microsoft.com/en-us/library/windows/hardware/ff545765%28v=vs.85…
Also interesting read: Cygwin's Corinna Vinschen and some MS guy about deletion
semantics ;-)
http://www.tech-archive.net/Archive/Development/microsoft.public.win32.prog…
--- quote ---
First off, FILE_DELETE_ON_CLOSE
and FileDispositionInformation are NOT the same thing.
There are really two parts to delete. The first part is to logically
delete the file. This consists of the file system marking the file as
deleted and then waiting for the last handle to close. When a file is
marked as deleted, many operations (including new opens) fail. Once the
last handle as closed, the actual delete of the file can take place.
When you open a file with FILE_DELETE_ON_CLOSE, the file is left as is.
Neither part of delete is done. The only thing done is to remember that
when this handle is closed, the file should be deleted. All operations on
the file will proceed as normal. When the handle marked as delete on close
is closed, the file is logically deleted. If that handle was the last
handle, the file will also actually be deleted.
When you use FileDispositionInformation to set a file to deleted, the file
is logically deleted right then. Any new opens for the file and many other
operations will fail. The file system will not complete the actual removal
of the file until the last handle is closed, though.
--- 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.