https://bugs.winehq.org/show_bug.cgi?id=36387
Bug ID: 36387
Summary: Multiple Microsoft installers crash or hang with heap
corruption (XmlLite, XPSEP, IE7)
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: setupapi
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
continuation of bug 26016
I did more testing, trying to extract a pattern out of the crashes.
Unfortunately there is no clear pattern.
There was one crash log which gave me another idea though.
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+heap wine ./update.exe -q >>log.txt 2>&1
...
0035:Call
setupapi.SetupInitDefaultQueueCallbackEx(00000000,ffffffff,00000000,00000000,00000000)
ret=01053eac
0035:Call ntdll.RtlAllocateHeap(00110000,00000000,0000000c) ret=7e0c34d9
0035:trace:heap:RtlAllocateHeap (0x110000,70000062,0000000c): returning
0x1b70c0
0035:Ret ntdll.RtlAllocateHeap() retval=001b70c0 ret=7e0c34d9
0035:Ret setupapi.SetupInitDefaultQueueCallbackEx() retval=001b70c0
ret=01053eac
...
0035:Call setupapi.SetupCommitFileQueueA(00000000,001f3908,7e09e35c,001b70c0)
ret=01053f55
0035:Ret setupapi.SetupCommitFileQueueA() retval=00000001 ret=01053f55
...
0035:Call setupapi.SetupCommitFileQueueA(00000000,0011c5a0,0103be4b,0034c1b8)
ret=01055f68
0035:Call
setupapi.SetupDefaultQueueCallbackA(001b70c0,00000001,00000000,00000000)
ret=0103bf44
0035:Ret setupapi.SetupDefaultQueueCallbackA() retval=00000001 ret=0103bf44
0035:Call ntdll.RtlFreeHeap(00110000,00000000,00000000) ret=7e0bf759
0035:Ret ntdll.RtlFreeHeap() retval=00000001 ret=7e0bf759
0035:Call ntdll.RtlAllocateHeap(00110000,00000000,00000080) ret=7e0bf782
0035:err:heap:HEAP_ValidateInUseArena Heap 0x110000: free block 0x1b70e0
overwritten at 0x1b70f0 by ffffffff
...
--- snip ---
There was a damaged heap block located near the context structure for the
default queue callback.
MSDN: http://msdn.microsoft.com/en-us/library/aa376956%28v=vs.85%29.aspx
--- quote ---
The SetupInitDefaultQueueCallback function builds the context structure that is
used by the default queue callback routine. It returns a void pointer to that
structure. This structure is essential for the default callback routine's
operation and must be passed to the callback routine. You do can this either by
specifying the void pointer as the context in a call to SetupCommitFileQueue,
or by specifying the void pointer as the context parameter when calling
SetupDefaultQueueCallback from a custom callback routine. This context
structure must not be altered or referenced by the setup application.
--- quote ---
What if these guys writing the update installers, distributing their own copy
of setupapi (updspapi) give a damn about MSDN and treat the context callback
structure not as opaque, possibly peek/modify structure members?
The context structured started at 0x001b70c0 .. the damaged part was at
0x1b70f0.
Unfortunately, I could not replicate the corruption pattern at this offset with
more tests.
I gave the callback context structure a larger block - 0x40 bytes to be safe.
The block was allocated with HEAP_ZERO_MEMORY to make sure that even if the
installer code peeks into structure it doesn't see garbage.
The current structure layout (member offsets) is most likely different from
their layout but that doesn't seem to play a role here.
With that change in place the crashes were gone.
I got a random heap crit sec hang out of several hundred tries though (maybe
unrelated?).
Austin, can you pad the structure here up to 0x40 bytes:
http://source.winehq.org/git/wine.git/blob/4d796458d0ed517d45adc57a1aedaf1c…
--- snip ---
39 /* context structure for the default queue callback */
40 struct default_callback_context
41 {
42 HWND owner;
43 HWND progress;
44 UINT message;
45 };
--- snip ---
zero init alloc (HEAP_ZERO_MEMORY) here:
http://source.winehq.org/git/wine.git/blob/4d796458d0ed517d45adc57a1aedaf1c…
--- snip ---
1480 PVOID WINAPI SetupInitDefaultQueueCallbackEx( HWND owner, HWND progress,
UINT msg,
1481 DWORD reserved1, PVOID reserved2 )
1482 {
1483 struct default_callback_context *context;
1484
1485 if ((context = HeapAlloc( GetProcessHeap(), 0, sizeof(*context) )))
1486 {
1487 context->owner = owner;
1488 context->progress = progress;
1489 context->message = msg;
1490 }
1491 return context;
1492 }
--- snip ---
and retest?
Thanks.
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=16879
Summary: .NET 3.0: XPSEPSC installer fails due to unimpl
kernel32.RtlCaptureStackBackTrace
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after getting past bug 16878 one runs into next one.
Prerequisite:
1. clean WINEPREFIX
2. sh winetricks -q dotnet20
3. download .NET 3.0 Framework installer from: http://download.microsoft.com
/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe
(sha1sum:
a566bcd2ffffc3842a95adc57f7df3f8cd11577f)
4. export _SFX_CAB_SHUTDOWN_REQUEST=1 (workaround, see bug 9158)
5. wine ./dotnetfx3setup.exe
It might take a while until all required packages are downloaded using BITS.
Note: If you need to redo steps, backup the directory "dotnetfx304506.30" from
"c:\\windows\\temp" to a different location, remove ~/.wine, copy
"dotnetfx304506.30" again to "c:\\windows\\temp" to prevent BITS from
downloading over and over again.
--- snip ---
fixme:advapi:RegisterEventSourceW
((null),L"Microsoft-Windows-SpoolerFilterPipelineSVC"): stub
fixme:winspool:OpenPrinterW PRINTER_DEFAULTS ignored => (null),(nil),0x00000001
fixme:winspool:AddPrinterW DocumentPropertiesW on printer L"Microsoft XPS
Document Writer" fails
wine: Call from 0x105e0b0 to unimplemented function
KERNEL32.dll.RtlCaptureStackBackTrace, aborting
wine: Unimplemented function KERNEL32.dll.RtlCaptureStackBackTrace called at
address 0x105e0b0 (thread 0014), starting debugger...
Unhandled exception: unimplemented function
KERNEL32.dll.RtlCaptureStackBackTrace called in 32-bit code (0x7bc485e6).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7bc485e6 ESP:0033ef1c EBP:0033ef70 EFLAGS:00000216( - 00 - IAP1)
EAX:0033ef1c EBX:7bc9b830 ECX:0034002d EDX:007d3e0c
ESI:0033f7cc EDI:007d3e18
Stack dump:
0x0033ef1c krb5_rc_dfl_init+0xfc: 80000100 00000001 00000000 0105e0b0
0x0033ef2c krb5_rc_dfl_init+0x10c: 00000002 010957de 01095722 60143151
0x0033ef3c krb5_rc_dfl_init+0x11c: 00110000 7bc9b830 00000000 00000000
0x0033ef4c krb5_rc_dfl_init+0x12c: 00000064 7bc43fe6 00000000 7bc6ebc4
0x0033ef5c krb5_rc_dfl_init+0x13c: 0033efc4 60145124 00000040 7bc6ed4d
0x0033ef6c krb5_rc_dfl_init+0x14c: 007d1288 0033efa4 0034003c 010957de
Backtrace:
=>0 0x7bc485e6 stub_entry_point+0x4b(dll="KERNEL32.dll",
name="RtlCaptureStackBackTrace", ret_addr=0x105e0b0)
[/opt/wine/wine-git/dlls/ntdll/loader.c:192] in ntdll (0x0033ef70)
1 0x0034003c in libkrb5.so.3 (+0x7503c) (0x0033efa4)
2 0x0105dbeb in printfilterpipelinesvc (+0x5dbeb) (0x0033efb4)
3 0x0105de7c in printfilterpipelinesvc (+0x5de7c) (0x0033f1dc)
4 0x0105e036 in printfilterpipelinesvc (+0x5e036) (0x0033f1fc)
5 0x0101cfb3 in printfilterpipelinesvc (+0x1cfb3) (0x0033fc34)
6 0x0101d020 in printfilterpipelinesvc (+0x1d020) (0x0033fd28)
7 0x0101dab1 in printfilterpipelinesvc (+0x1dab1) (0x0033fd6c)
8 0x0101be04 in printfilterpipelinesvc (+0x1be04) (0x0033fd94)
9 0x0101be76 in printfilterpipelinesvc (+0x1be76) (0x0033fdb0)
10 0x0101bf7f in printfilterpipelinesvc (+0x1bf7f) (0x0033fdd0)
11 0x0101e133 in printfilterpipelinesvc (+0x1e133) (0x0033fef8)
12 0x7b87ebd0 start_process+0xe4(arg=(nil))
[/opt/wine/wine-git/dlls/kernel32/process.c:904] in kernel32 (0x0033ffe8)
...
00000025 (D) C:\windows\system32\unknown\PrintFilterPipelineSvc.exe
--- snip ---
In case you are wondering about "unknown" in path, Wine doesn't know about
directory id 55 which is printer processor directory.
Although it might deserve its own bug I mention it here:
--- snip ---
0045:fixme:setupapi:create_system_dirid unknown dirid 55
--- snip ---
That whole print processor stuff needs to be tackled separately.
--- snip ---
0032:Call KERNEL32.CopyFileW(0033f814
L"C:\\3e0c51033dbb7684e997f131b3146a\\update\\..\\i386\\filterpipelineprintproc.dll",0033fa1c
L"C:\\windows\\system32\\spool\\prtprocs\\w32x86\\filterpipelineprintproc.dll",00000000)
ret=0101cf79
0032:Ret KERNEL32.CopyFileW() retval=00000001 ret=0101cf79
0032:Call winspool.drv.AddPrintProcessorW(00000000,01002388 L"Windows NT
x86",01001f9c L"filterpipelineprintproc.dll",01001fd4 L"MS_XPS") ret=0101d032
0032:fixme:winspool:AddPrintProcessorW ((null),L"Windows NT
x86",L"filterpipelineprintproc.dll",L"MS_XPS"): stub
0032:Ret winspool.drv.AddPrintProcessorW() retval=00000000 ret=0101d032
--- snip ---
There are several issues, though I leave them alone for now ...
---
After adding RtlCaptureStackBackTrace() forward to kernel32.spec and adding
stub to ntdll (FIXME params + returning STATUS_NOT_IMPLEMENTED), the crash is
prevented.
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=16906
Summary: .NET 3.0: XPSEPSC installer copies print processor files
to wrong directory (setupapi unhandled dirid 55)
Product: Wine
Version: 1.1.12
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
I mentioned this in bug 16879 and before the issue gets lost...
Wine doesn't know about directory id 55 which is print processor directory.
--- snip ---
...
00c4:fixme:setupapi:create_system_dirid unknown dirid 55
00c4:Call KERNEL32.GetSystemDirectoryW(00000000,00000000) ret=789dacd1
00c4:Ret KERNEL32.GetSystemDirectoryW() retval=00000014 ret=789dacd1
...
00c4:Call KERNEL32.lstrlenW(0015ab20 L"C:\\windows\\system32\\unknown")
ret=789ecb4c
...
00c4:Call KERNEL32.CreateFileA(006f26f0
"c:\\windows\\system32\\unknown\\printfilterpipelinesvc.exe",80000000,00000003,00000000,00000003,08000000,00000000)
ret=0106825d
...
--- snip ---
--- snip dlls/setupapi/dirid.c ---
/* create the string for a system dirid */
static const WCHAR *create_system_dirid( int dirid )
{
...
case DIRID_PRINTPROCESSOR: /* FIXME */
default:
FIXME( "unknown dirid %d\n", dirid );
return get_unknown_dirid();
}
...
}
--- snip dlls/setupapi/dirid.c ---
GetPrintProcessorDirectoryW() should provide all required information.
With patch applied:
--- snip ---
...
0031:Call KERNEL32.CopyFileW(0015b310
L"c:\\10976f8595cea39afb\\PrintFilterPipelineSvc.exe",0015cb70
L"C:\\windows\\system32\\spool\\prtprocs\\w32x86\\PrintFilterPipelineSvc.exe",00000000)
ret=60afb0c9
--- 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.
http://bugs.winehq.org/show_bug.cgi?id=16878
Summary: .NET 3.0: XPSEPSC installer fails due to missing
ntoskrnl.exe placeholder and version resource
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
NOTE: bug 16875 which covers two issues in setupapi.SetupGetTargetPathW needs
to be properly fixed for *both* cases, see "update.inf" snippet which is part
of this bug report.
After bug 16875 (and 16876) are fixed, the installer fails:
"c:\\windows\\temp\\dd_dotnetfx3error.txt":
--- snip ---
[01/11/09,11:36:24] Microsoft .NET Framework 2.0: [2] Error: Installation
failed for component Microsoft .NET Framework 2.0. MSI returned error code 1603
[01/11/09,11:36:37] WapUI: [2] DepCheck indicates Microsoft .NET Framework 2.0
is not installed.
[01/11/09,11:36:37] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0
was not attempted to be installed.
--- snip ---
"c:\\windows\\temp\\dd_dotnetfx3install.txt":
--- snip ---
[01/11/09,11:36:37] WapUI: Return for RGB Rast indicates a successful
installation. DepCheck indicates the component is installed.
[01/11/09,11:36:37] WapUI: Return for MSXML 6.0 Parser indicates a successful
installation. DepCheck indicates the component is installed.
[01/11/09,11:36:37] WapUI: Return for WIC Installer indicates a successful
installation. DepCheck indicates the component is installed.
[01/11/09,11:36:37] WapUI: DepCheck indicates Microsoft .NET Framework 2.0 is
not installed.
--- snip ---
Obviously bug 12401 (which I have analyzed in bug 10601).
So the prerequisite expands.
1. clean WINEPREFIX
2. sh winetricks -q dotnet20
3. download .NET 3.0 Framework installer from: http://download.microsoft.com
/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe
(sha1sum:
a566bcd2ffffc3842a95adc57f7df3f8cd11577f)
4. export _SFX_CAB_SHUTDOWN_REQUEST=1 (workaround, see bug 9158)
5. wine ./dotnetfx3setup.exe
It might take a while until all required packages are downloaded using BITS.
Note: If you need to redo steps, backup the directory "dotnetfx304506.30" from
"c:\\windows\\temp" to a different location, remove ~/.wine, copy
"dotnetfx304506.30" again to "c:\\windows\\temp" to prevent BITS from
downloading over and over again.
After applying prerequisite the installer fails again:
"c:\\windows\\temp\\dd_dotnetfx3error.txt":
--- snip ---
[01/11/09,11:53:13] XPSEPSC x86 Installer: [2] Error code 1603 for this
component means "ERROR_INSTALL_FAILURE
"
[01/11/09,11:53:13] XPSEPSC x86 Installer: [2] Setup Failed on component
XPSEPSC x86 Installer
[01/11/09,11:53:24] WapUI: [2] DepCheck indicates XPSEPSC x86 Installer is not
installed.
--- snip ---
"c:\\windows\\temp\\dd_XPS.txt":
--- snip ---
[dd_XPS.txt]
0.007:
================================================================================
0.008: 2009/01/11 11:53:12.167 (local)
0.009: C:\a71b96a363115310c46014e60bbc1d36\update\update.exe (version 6.2.29.0)
0.009: Hotfix started with following command line: /quiet /norestart
/log:C:\windows\temp\dd_XPS.txt
0.009: GetKernelType: GetInternalFilename failed
0.552: In Function TestVolatileFlag, line 11873, RegOpenKeyEx failed with error
0x2
0.552: In Function TestVolatileFlag, line 11905, RegOpenKeyEx failed with error
0x2
0.552: DoInstallation: CleanPFR failed: 0x2
0.553: SetProductTypes: InfProductBuildType=BuildType.IP
0.554: SetAltOsLoaderPath: No section uses DirId 65701; done.
0.554: RegisterDll: Executing command line: "C:\windows\system32\regsvr32.exe"
/s "C:\windows\system32\licdll.dll" ...
0.634: RegisterDll: Exit code=0x00000001
0.634: RegisterDll: Executing command line: "C:\windows\system32\regsvr32.exe"
/s "C:\windows\system32\regwizc.dll" ...
0.712: RegisterDll: Exit code=0x00000001
0.713: Unexpected Error While Executing Line 1 ( Condition.Requirement ) of
W2K.Condition
0.713: ExConditionalEvaluateSection: Syntax error in 'Condition' key of section
W2K.Condition.
0.713: DoInstallation: Error 0xf00c while evaluating extended conditional
section [ProductInstall.ExtendedConditional].
0.713: CleanupTrustedInfFile: GetFileAttributes for
C:\windows\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\update.cat
failed: 0x2
0.714: The XpsEPSC c:\a71b96a363115310c46014e60bbc1d36\update\update.inf file
is not correct.
0.714: Update.exe extended error code = 0xf00c
0.714: Update.exe return code was masked to 0x643 for MSI custom action
compliance.
--- snip ---
Relevant "update.inf":
--- snip ---
...
[ProductInstall.ExtendedConditional]
ConditionInstall=W2K.Condition
[W2K.Condition]
Condition = SingleOp, Condition.Requirement
ConditionalOperations=Install.Not2k
[Condition.Requirement]
GreatOrEqualOp=CheckFilever, System32.files, ntoskrnl.exe, >=, 5.1.0.0
...
[DestinationDirs]
Copy.System32=11
Copy.System32.not2k=11
Copy.PrintProc=55
Copy.dllcache=65619
Copy.dllcache.not2k=65619
--- snip ---
Adding version resource to ntoskrnl.exe alone is not sufficient, a placeholder
needs to be present in system32:
--- snip ---
0028:Call KERNEL32.FindFirstFileA(0033ac3c
"C:\\windows\\system32\\ntoskrnl.exe",0033a18c) ret=0106da6d
0028:Ret KERNEL32.FindFirstFileA() retval=ffffffff ret=0106da6d
0028:Call KERNEL32.GetLastError() ret=0106b894
0028:Ret KERNEL32.GetLastError() retval=00000002 ret=0106b894
...
0028:Call msvcrt._vsnprintf(0033a967,000007f7,01027e3c "Unexpected Error While
Executing Line %d ( %ws ) of %ws \n",0033b198) ret=0106b900
--- snip ---
After fixing this problem the condition is satisfied.
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=34217
Bug #: 34217
Summary: MS XPSEP GUI installer crashes if dotnet20 installed
Product: Wine
Version: 1.7.0
Platform: x86-64
URL: http://download.microsoft.com/download/2/5/2/2526f55d-
32bc-410f-be18-164ba67ae07d/XPSEP%20XP%20and%20Server%
202003%2032%20bit.msi
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Blocks: 32164, 32166, 32167, 32168
Classification: Unclassified
Created attachment 45524
--> http://bugs.winehq.org/attachment.cgi?id=45524
Wine 1.7.0 console output
The Microsoft XML Paper Specification Essentials Pack (XPSEP) GUI installer
fails 100% of the time when dotnet20 is first installed in a clean WINEPREFIX.
err:msi:ITERATE_Actions Execution halted, action L"EPUpdateInstallAction"
returned 1627
err:msi:custom_get_thread_return Invalid Return Code 3
Affects Winetricks in multiple verbs.
Run:
1. winetricks dotnet20
2. Install.
--
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=19624
Summary: winspool.drv needs to properly handle local printer
server config data queries (XPSEPSC update/installer)
Product: Wine
Version: 1.1.27
Platform: PC
URL: http://go.microsoft.com/fwlink/?LinkId=96332
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: spooler
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
that component is a needed prerequisite for .NET 3.0 Framework SP1, 3.5, 3.5
SP1
Fortunately can be reproduced without all the .NET installer mess: clean
WINEPREFIX, run the installer from link.
Local printer server has no name associated with it (NULL), leading to later
problem when querying for registry data.
--- snip ---
0032:Call KERNEL32.CreateProcessA(00000000,0015a5e8
"C:\\windows\\system32\\spool\\prtprocs\\w32x86\\printfilterpipelinesvc.exe
/RegServer
C:\\3b6becc6d220eb7bdd60153c\\update\\",00000000,00000000,00000000,00000000,00000000,00000000,0033ba98,0033badc)
...
003b:Call winspool.drv.OpenPrinterW(00000000,0033f8a0,00000000) ret=0102ed15
003b:trace:winspool:OpenPrinterW ((null), 0x33f8a0, (nil))
...
003b:trace:winspool:OpenPrinterW returning 1 with 0 and 0x1
003b:Ret winspool.drv.OpenPrinterW() retval=00000001 ret=0102ed15
003b:Call winspool.drv.GetPrinterDataW(00000001,01004ad8
L"DefaultSpoolDirectory",00000000,00000000,00000000,0033f8a8) ret=0102ed82
003b:trace:winspool:GetPrinterDataExW (0x1, L"PrinterDriverData",
L"DefaultSpoolDirectory" (nil), (nil), 00000000, 0x33f8a8)
003b:Ret winspool.drv.GetPrinterDataW() retval=00000006 ret=0102ed82
...
003b:Call KERNEL32.GetLastError() ret=01021138
003b:Ret KERNEL32.GetLastError() retval=00000000 ret=01021138
...
003b:Call KERNEL32.MultiByteToWideChar(00000000,00000008,0033f718 "Unexpected
return value.",00000100,0033f518,00000100) ret=0105ec7c
003b:Ret KERNEL32.MultiByteToWideChar() retval=00000100 ret=0105ec7c
...
003b:Call KERNEL32.RaiseException(e06d7363,00000001,00000003,0033f810)
ret=0101e688
003b:trace:seh:raise_exception code=e06d7363 flags=1 addr=0x7b84303a
ip=7b84303a tid=003b
003b:trace:seh:raise_exception info[0]=19930520
003b:trace:seh:raise_exception info[1]=0033f83c
003b:trace:seh:raise_exception info[2]=01086754
003b:trace:seh:raise_exception eax=7b82cb69 ebx=7b8d091c ecx=00000000
edx=0033f7fc esi=0033f7fc edi=0033f770
003b:trace:seh:raise_exception ebp=0033f758 esp=0033f6f4 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000246
...
003b:Call KERNEL32.OutputDebugStringA(01002aec "Invalid parameter passed to C
runtime function.\n") ret=01022579
003b:Ret KERNEL32.OutputDebugStringA() retval=ffffffff ret=01022579
--- 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=45117
Bug ID: 45117
Summary: paf5.exe not working with wine 2.0 or 3.0 but works ok
with wine 1.9
Product: Wine
Version: 3.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hollywood188(a)live.com
Distribution: ---
paf5.exe works with wine 1.9 but with 2.0 and 3.0 rectangular boxes are shown
instead of charactors I am using Knoppix 8.1 linux which had wine 2.0 and I
upgraded to wine 3.0 but same problem. it worked fine with Knoppix 7.7.1 and
wine 1.9??
--
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=16227
Summary: Tooltips on mouse hover in EMS SQL Manager block the
mouse click
Product: Wine
Version: 1.1.9
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ksfreitas(a)gmail.com
Created an attachment (id=17473)
--> (http://bugs.winehq.org/attachment.cgi?id=17473)
Screenshot of a tooltip bloocking the mouse click
In EMS SQL Manager (Free and Full), the tooltips block the mouse click, having
to resize to see all item without tooltip for click. The link for freeware
software download:
http://www.sqlmanager.net/en/products/postgresql/manager/download
--
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=38966
Bug ID: 38966
Summary: force close after hitting install usb drivers on lg
mobile support tool and when enter cell carrier
Product: Wine
Version: 1.7.37
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: catsetname(a)yahoo.com
Created attachment 51910
--> https://bugs.winehq.org/attachment.cgi?id=51910
backtrace.txt
after loading lg mobile support tool i hit install usb drivers, list of cell
carriers pop to select once selected box comes up stating program needs to
close and options to close or show details
--
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=27502
Summary: app freezes when WM_KILLFOCUS creates modal dialog
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: efrias(a)syncad.com
Created an attachment (id=35159)
--> (http://bugs.winehq.org/attachment.cgi?id=35159)
simple example which produces the error
When a program brings up a modal dialog box in response to a WM_KILLFOCUS
message, the program will freeze. I've attached a simple test case, all
boilerplate except for:
case WM_KILLFOCUS:
MessageBox(hWnd, _T("Killing Focus"), _T("Note"), MB_OK);
in the main event loop. If you run the program and then give focus to another
application, the messagebox will pop up and then the program will become
unresponsive.
What is happening is:
- x11drv gets a FocusOut event and calls the event handler, which ends up
SendMessage-ing a WM_KILLFOCUS to the program.
- The programs's code creates a modal dialog like the MessageBox above, and
enters the dialog's event loop, which winds up calling GetMessage which calls
MsgWaitForMultipleObjectsEx to get more X11 events.
- X11DRV_MsgWaitForMultipleObjectsEx executes this:
if (data->current_event) mask = 0; /* don't process nested events
*/
where data->current_event is true since we're still handling the FocusOut
event. Since we're not processing nested events, we'll never be able to
process the usual events like keys or mouse events which could exit this nested
event loop.
This type of error occurs in a few places in our application, where a
WM_KILLFOCUS message to an edit box triggers some input validation and displays
an error on failure. This works correctly in the normal case, where the user
tabs out or clicks on another control in the dialog box containing the edit
control -- since everything stays in the same top-level window, there is no
FocusOut event from X11 and the WM_KILLFOCUS is generated internally by wine in
response to, say, a KeyEvent. I think these key or mouse events are just
posted to the windows message queue, and the X11 event handler has already
exited by the time the application gets around to processing the ensuing
WM_KILLFOCUS. But in the case where focus is lost by clicking outside the
dialog containing the edit control, the WM_KILLFOCUS is generated by the
FocusOut handler which is still executing, and we lock up.
I suspect this is related to bug 11595 "Notepad++ freezes if native application
changes a file it has open (dogfood)". My guess is in that case, a FocusIn
event triggers something like a WM_ACTIVATE, in which notepad++ notices a file
is changed and displays a messagebox asking if you want to reload. Since wine
is still processing the FocusIn event, the modal message loop's call to
MsgWaitForMultipleObjectsEx will never process any useful events because it's a
nested event. Our application's built-in text editor has this same problem.
I don't understand the event handling code well enough to propose a solution.
As a test, I allowed nested event processing and it solved the problem without
introducing any obvious errors, but I'm sure that check was in there for a
reason. It's probably better to keep the application code from being executed
from inside the event handler, if that's possible.
Note: this bug was also posted as a message to wine-devel here:
http://www.winehq.org/pipermail/wine-devel/2011-June/090652.html
--
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=32058
Bug #: 32058
Summary: Guild Wars 2 launcher freezes/hangs (unable to launch
game)
Product: Wine
Version: 1.5.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: x.egam.wodahs.x(a)gmail.com
CC: julliard(a)winehq.org
Classification: Unclassified
Once I updated wine to version 1.5.15, the Guild Wars 2 launcher can no longer
launch the game because it just freezes/hangs. This was not an issue in 1.5.14,
and in order to run the game for now I'm using wine 1.5.14 compiled from
source.
In wine 1.5.14, the launcher is black (can't see UI at all, but it's still
functional) unless using the -dx9single flag. Using -dx9single, the background
is black instead of transparent but the UI inside is properly rendered. This
information is important because, before submitting this bug report, I
performed two separate git bisects between 1.5.14 and 1.5.15: one without any
command-line parameters, and one using -dx9single.
Technical details follow:
=======================================================================
1) git bisect for running the game without any parameters:
In the last good commit (8dcbeff760115834656f3f1fc85922e3a9af14d0), the
launcher is still black but it still works. You cannot see the UI but by
blindly logging in, the game does launch. In the first bad commit
(f12c1c6630f0bf842dde9af10da4ab188ff16e94), the behavior is different from the
wine 1.5.15 release and the other commits tested: here, instead of locking up,
the window just disappears. It's still there, but I guess it's fully
transparent. Because this leaves us even more "blind", I considered this "bad"
in the git bisect, yielding the following result:
---
f12c1c6630f0bf842dde9af10da4ab188ff16e94 is the first bad commit
commit f12c1c6630f0bf842dde9af10da4ab188ff16e94
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Sep 26 13:12:17 2012 +0200
winex11: Switch to an ARGB visual for layered windows with per-pixel alpha.
:040000 040000 e9933c28f3e50c52d2cee37a43b06a2f5cb5a497
3870099a31a68a69cd7c022857794700c2343aa9 M dlls
---
If, however, we consider f12c1c6630f0bf842dde9af10da4ab188ff16e94 "good" in the
git bisect, we get:
---
d8247efd5ecb8c4604624eb2bbf47e194ce59e7e is the first bad commit
commit d8247efd5ecb8c4604624eb2bbf47e194ce59e7e
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Sep 27 20:47:08 2012 +0200
winex11: Take the alpha channel into account to compute the region of
layered windows.
:040000 040000 3870099a31a68a69cd7c022857794700c2343aa9
d9ec62b63405f910db90b095145a7910cc124eef M dlls
---
In this case, the launcher does indeed lock up in the first bad commit
(d8247efd5ecb8c4604624eb2bbf47e194ce59e7e).
2) git bisect for running the game using -dx9single:
Using the -dx9single flag, we seem to be able to get to a later commit before
it stops working (but does not work in the 1.5.15 release). In the last good
commit (dbff4f422c943a837f0098e921f831eb4a94ac11), everything seems to be fine
(when using the -dx9single flag) and even the transparency seems to be working.
However, in the first bad commit (6f3b097a203d9ca248732cb45eed462599ca3af1),
things start to lock up. This yields the following git bisect result:
---
6f3b097a203d9ca248732cb45eed462599ca3af1 is the first bad commit
commit 6f3b097a203d9ca248732cb45eed462599ca3af1
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Oct 3 00:09:01 2012 +0200
winex11: Fix a typo in the surface region computation with an alpha
channel.
:040000 040000 fa11ac3c80763b81911ba999d8302029d2c6d147
566c9c06b11f8785c870a1e09ec53d42e13d1524 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.
https://bugs.winehq.org/show_bug.cgi?id=38166
Bug ID: 38166
Summary: Heroes of Might and Magic 5 slowly on some maps.
Product: Wine
Version: 1.7.37
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galdralag(a)bk.ru
Distribution: ---
On some maps especially when many green trees game works very slowly.
This happens on all versions of nvidia driver AFTER 331.89.
331.89 it is last version when game works on maximum video settings.
May be this is bug of nvidia driver (not wine) but I can't test this.
I tested 2 videocards nvidia 760M and 650 ti.
This can be reproduced on ArchLinux, Fedora, OpenSuse and Kubuntu.
If you have problems with reproducing I can attach some maps where it can be
reprocuced
--
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=44243
Bug ID: 44243
Summary: Spire and Serum paints very slowly
Product: Wine
Version: 3.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bique.alexandre(a)gmail.com
Distribution: ---
Hi,
The following programs take a lot of time to render the UI:
https://www.reveal-sound.com/https://www.xferrecords.com/products/serum
A few versions before the UI was just black, and recently it started to paint
correctly, so it must be that you have add new painting/rendering api recently.
Yet the painting performance is really slow, so it would be great if you guys
could have a look and optimize it a bit? Maybe it is an easy thing to do?
Many thanks for your work guys!
To reproduce it you can install a plugin host like reaper:
https://www.reaper.fm/ and then install the vst plugins and try them with
reaper.
Regards,
Alexandre
--
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=21987
Summary: Acrobat 7 tryout complains: This Postscript Driver or
Windows Platform (Win9x/Me) not supported
Product: Wine
Version: 1.1.40
Platform: x86
URL: http://www.adobe.com/products/acrobatpro/tryreg.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
When installing the Acrobat 7 trial AcTR7EFG.exe, the installer produces a
dialog:
Devmode
This Postscript Driver or Windows Platform (Win9x/Me) not supported
It doesn't prevent the installer from progressing, but the same thing doesn't
happen on Vista.
--
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=43852
Bug ID: 43852
Summary: Monkey Island Special Edition Collection: White screen
and crash when starting Monkey1.exe
Product: Wine
Version: 2.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cweiske(a)cweiske.de
Distribution: ---
Created attachment 59408
--> https://bugs.winehq.org/attachment.cgi?id=59408
wine terminal output
After successfully installing "Monkey Island Special Edition Collection" from
DVD (bug #43851), running Monkey1.exe fails:
1. The main display (or wine's virtual desktop) only shows a white screen
2. Terminal shows some errors, the last ones are below
3. Wine's in-built backtrace collector does not seem to work
err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
L"C:\\windows\\system32\\XAudio2_4.dll"
err:ole:CoGetClassObject no class object {03219e78-5bc3-44d1-b92e-f63d89cc6526}
could be created for context 0x1
wine: Unhandled page fault on read access to 0x00000000 at address 0x441192
(thread 0009), starting debugger...
--
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=44454
Bug ID: 44454
Summary: Windows Media Encoder 9 refuses to install
Product: Wine
Version: 3.0
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
Claims "This version of Windows Media Encoder can only be installed on a
computer running Microsoft Windows XP Professional x64 Edition or Windows
Server 2003 x64 Edition."
Needs a newer version resource for kernel32.dll.
--
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=44574
Bug ID: 44574
Summary: Wine 3.1 - Office 2013 starts with a black screen!
Product: Wine
Version: 3.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: eduardolucioac(a)gmail.com
Distribution: ---
Created attachment 60544
--> https://bugs.winehq.org/attachment.cgi?id=60544
Office 2013 starts with a black screen
> =====================
* PROBLEM:
Office 2013 starts with a black screen!
https://i.stack.imgur.com/PKLGo.jpg
NOTE: See image ("Office 2013 starts with a black screen" attachment)!
> =====================
* INSTALLATION SCHEME USED:
WINEARCH=win32 WINEPREFIX=~/office2013 wine wineboot
WINEARCH=win32 WINEPREFIX=~/office2013 wine '<PATH_TO_SETUP_EXE>/setup.exe'
WINEARCH=win32 WINEPREFIX=~/office2013 wine 'C:\Program Files\Microsoft
Office\Office15\WINWORD.EXE'
> =====================
* THESE INTERVENTIONS DID NOT WORK:
cat << EOF > "Direct3D.reg"
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Wine\Direct3D]
"MaxVersionGL"=dword:00030002
EOF
WINEARCH=win32 WINEPREFIX=~/.PlayOnLinux/wineprefix/office2013 wine regedit
"Direct3D.reg"
rm -f "Direct3D.reg"
WINEARCH=win32 WINEPREFIX=~/.PlayOnLinux/wineprefix/office2013 winetricks -q
corefonts
WINEARCH=win32 WINEPREFIX=~/.PlayOnLinux/wineprefix/office2013 winetricks -q
msxml6
WINEARCH=win32 WINEPREFIX=~/.PlayOnLinux/wineprefix/office2013 winetricks -q
riched20
NOTE I: "wbind" installed.
NOTE II: 3.1 is the wine version.
--
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=23237
Summary: DirectX SDK Nov 2006 unzip progress bar full of
symbols
Product: Wine
Version: 1.2-rc3
Platform: x86
URL: http://www.microsoft.com/downloads/details.aspx?displa
ylang=en&FamilyID=c72d9f1e-53f3-4747-8490-6801d8e8b4ef
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The winzip self-extractor's progress bar should show the filename
being extracted, but it's in a funny symbol font.
--
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=40364
Bug ID: 40364
Summary: Geometry problems with Indiana Jones demo
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: jeremielapuree(a)yahoo.fr
Distribution: ---
Created attachment 54050
--> https://bugs.winehq.org/attachment.cgi?id=54050
Screenshot showing the problem
You can see polygons instead of background.
Be careful: to bypass the msvcrt bug and see this problem, you need an old
msvcrt native dll.
--
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=11661
Summary: Confusing error message when executing application on
noexec fs
Product: Wine
Version: 0.9.55.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquid.acid(a)gmx.net
Hi there,
I'm suggesting to make some checks prior to loading and executing applications.
The problem I encountered yesterday was that when trying to start applications
from a filesystem with the noexec parameter enabled the whole app pagefaults.
That was really my mistake because I accidentally changed some lines in the
fstab after changing the encryption engine of my system. I only have the exec
parameter enabled on the games filesystem, all other data filesystem don't have
it enabled.
It would be a good thing to output a somehow more informative error message
when such a configuration is encountered (executing code from noexec fs).
I suggest this because I was quite confused seeing the application to pagefault
that was running two days ago (and I didn't do any package updates in these two
days).
Thanks,
Tobias
--
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=36984
Bug ID: 36984
Summary: Rise of Nations: Extended Edition fails to start due
to missing mfc110.dll
Product: Wine
Version: 1.7.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jaimerave(a)gmail.com
When I try to start Rise of Nations extended edition it just stays in the
screen trying to install VC Redist and at the end it just fails to start. The
message I see in the console is:
err:module:import_dll Loading library mfc110.dll (which is needed by
L"C:\\Program Files\\Steam\\SteamApps\\common\\Rise of Nations\\patriots.exe")
failed (error c000007b).
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Steam\\SteamApps\\common\\Rise of Nations\\patriots.exe" failed, status
c0000135
This is on Ubuntu 14.04 and Wine 1.7.23
--
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=37302
Bug ID: 37302
Summary: chem3d wont start
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tedwaltmuf(a)yahoo.com
Created attachment 49614
--> https://bugs.winehq.org/attachment.cgi?id=49614
here is the last run log
when I try and start chem 3d nothing happens the crash report says im missing
some .dll but there all there.
--
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=40192
Bug ID: 40192
Summary: Wine does not have MFC80.dll
Product: Wine
Version: 1.9.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: asdfghrbljzmkd(a)outlook.com
Distribution: ---
Wine does not have MFC80.dll, programs must use vcrun2005.
--
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=44582
Bug ID: 44582
Summary: Root Double - Some parts of white characters change to
black
Product: Wine
Version: 3.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: morguldir(a)protonmail.com
Distribution: ArchLinux
Created attachment 60554
--> https://bugs.winehq.org/attachment.cgi?id=60554
Game ran with WINEDEBUG=font
I have added a text file with WINEDEBUG=font, and a file without any debug
flags. When you see quoted parts i am referring to attached images.
When you click or hover over some clickable things some parts of characters in
text change to black.
For the title screen and main menu items need you to click on for them to
break.
If the text is not selected, for example when you sort things, it will not have
as many lines but it still has them sometimes. See "Pre-read only" and "All",
here the 'A' character in "All" still has some bugs, where as "MESSAGE" works
fine and "SYSTEM" does not. I suspect this has something to do with the
background colours.
If you look at "Pre-read only" you will see that the 'e' characters don't have
the same bug. In the main menu there is a field that has 3 question marks, and
the bug does not appear at all on two of these. (hard to screenshot because i
have to click 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=14025
Summary: Heroes of Might Magic V: camera does not move well
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mkstoyanov(a)hotmail.com
Heroes of Might and Magic V (original) and HOMMV: Hammers of Fate, on should be
able to swing the camera left and right by pressing the right mouse button and
move the mouse. It works under windows. In wine (9.58 on, until 1.0 inclusive)
the camera moves only barely, in order to make a 90 degree change of view, I
need to swipe the mouse over the pad several time, in windows I can make 180
with half a pad. The game has no mouse sensitivity option. (camera moves
normally from the keyboard, so the game still plays OK)
--
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=28254
Summary: Problem with activation program pm_fastrack-pmp.exe
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lavir.2010(a)gmail.com
After installing the program pm_fastrack_pmp version 6.0 when trying to enable
execution of the program he presents an information stating that the
program-pm_fastrack pmp.exe found a serious problem and needs to close.
--
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=35824
Bug ID: 35824
Summary: UltraISO 'ISODrive.sys' crashes in entry point (SCM
doesn't start SERVICE_FILE_SYSTEM_DRIVER type services
with winedevice hosting process)
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
found during bug 35755
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+winedevice,+ntoskrnl,+service wine ./uiso9_pe.exe
>>log.txt 2>&1
...
0016:Call KERNEL32.CreateNamedPipeW(00119d70
L"\\\\.\\pipe\\net\\NtControlPipe2",40000003,00000000,00000001,00000100,00000100,00002710,00000000)
ret=7eded4ac
0016:Ret KERNEL32.CreateNamedPipeW() retval=000000d8 ret=7eded4ac
...
0016:Call KERNEL32.ExpandEnvironmentStringsW(0011a038 L"C:\\Program
Files\\UltraISO\\drivers\\ISODrive.sys",00000000,00000000) ret=7edecacd
0016:Ret KERNEL32.ExpandEnvironmentStringsW() retval=0000002f ret=7edecacd
...
0016:Call KERNEL32.ExpandEnvironmentStringsW(0011a038 L"C:\\Program
Files\\UltraISO\\drivers\\ISODrive.sys",00119d70,0000002f) ret=7edecb39
0016:Ret KERNEL32.ExpandEnvironmentStringsW() retval=0000002f ret=7edecb39
0016:Call KERNEL32.CreateProcessW(00000000,00119d70 L"C:\\Program
Files\\UltraISO\\drivers\\ISODrive.sys",00000000,00000000,00000000,00000400,00540000,00000000,0084e4c8,0084e50c)
ret=7edecd84
...
0037:Call KERNEL32.__wine_kernel_init() ret=7bc5a3aa
0016:Ret KERNEL32.CreateProcessW() retval=00000001 ret=7edecd84
...
0037:Starting process L"C:\\Program Files\\UltraISO\\drivers\\ISODrive.sys"
(entryproc=0x253b3f)
0037:trace:seh:raise_exception code=c0000005 flags=0 addr=0x2537a9 ip=002537a9
tid=0037
0037:trace:seh:raise_exception info[0]=00000000
0037:trace:seh:raise_exception info[1]=00000061
0037:trace:seh:raise_exception eax=00000061 ebx=00000000 ecx=0000bb40
edx=7edfefe4 esi=7edd4ce0 edi=00251d4c
0037:trace:seh:raise_exception ebp=0035fe20 esp=0035fd5c cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010246
...
--- snip ---
The random crashes during relay trace are the result from the driver entry
point accessing the second parameter which ought to be 'RegistryPath.
The binary is started as plain win32 process (not loaded in winedevice hosting
process) hence the driver entry point params are not setup.
The kernel driver is a file system driver service, currently not handled with
Wine's service manager.
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms682450%28v=vs.85%…
--- quote ---
dwServiceType [in]
The service type. This parameter can be one of the following values.
Value Meaning
SERVICE_ADAPTER 0x00000004
Reserved.
SERVICE_FILE_SYSTEM_DRIVER 0x00000002
File system driver service.
SERVICE_KERNEL_DRIVER 0x00000001
Driver service.
SERVICE_RECOGNIZER_DRIVER 0x00000008
Reserved.
SERVICE_WIN32_OWN_PROCESS 0x00000010
Service that runs in its own process.
SERVICE_WIN32_SHARE_PROCESS 0x00000020
Service that shares a process with one or more other services. For more
information, see Service Programs.
--- quote ---
Registry export of driver service:
--- snip ---
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\ISODrive]
"DisplayName"="ISO DVD/CD-ROM Device Driver"
"ErrorControl"=dword:00000000
"ImagePath"="C:\\Program Files\\UltraISO\\drivers\\ISODrive.sys"
"ObjectName"="LocalSystem"
"PreshutdownTimeout"=dword:0002bf20
"Start"=dword:00000001
"Type"=dword:00000002
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\ISODrive\Parameters]
"AutoMount"=dword:00000001
"ExcludeDrives"="CDEZ"
--- snip ---
Type -> 0x2 -> SERVICE_FILE_SYSTEM_DRIVER
Source:
http://source.winehq.org/git/wine.git/blob/debd1346b003ae34013a04318e7105f8…
--- snip ---
606 static DWORD service_start_process(struct service_entry *service_entry,
HANDLE *process)
607 {
...
634
ExpandEnvironmentStringsW(service_entry->config.lpBinaryPathName,path,size);
635
636 if (service_entry->config.dwServiceType == SERVICE_KERNEL_DRIVER)
637 {
638 static const WCHAR winedeviceW[] =
{'\\','w','i','n','e','d','e','v','i','c','e','.','e','x','e',' ',0};
...
--- snip ---
$ sha1sum uiso9_pe.exe
77d93c41f45530e58892b276a3fa92c7128b7539 uiso9_pe.exe
$ du -sh uiso9_pe.exe
4.2M uiso9_pe.exe
$ wine --version
wine-1.7.14-185-g5cf20ce
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=39121
Bug ID: 39121
Summary: The Quest Editor (
http://www.redshift.hu/quest/editor.zip ) : crashes
when loading an expansion file with a "surface map"
(e.g. loading this:
https://www.dropbox.com/s/4zxh11sgyj5b47c/TheQuestTest
.pdb?dl=0 will crash it).
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark_god990(a)yahoo.com
Distribution: ---
Created attachment 52130
--> https://bugs.winehq.org/attachment.cgi?id=52130
log outputted after crash
The Quest Editor ( http://www.redshift.hu/quest/editor.zip ) : crashes when
loading an expansion file with a "surface map" (e.g. loading this:
https://www.dropbox.com/s/4zxh11sgyj5b47c/TheQuestTest.pdb?dl=0 will crash it).
To replicate crash:
Download this: http://www.redshift.hu/quest/editor.zip . Extract contents. Run
"TheQuestEditor.exe". At the top toolbar, click "File", then "New". Follow
instructions in dialogue box that opens, then click "Ok". At the top toolbar,
click "Map", then "Create Surface Maps". In corresponding field to "base_id:",
type in an id prefixed by your world id and and an underscore (it should have
both already, you just need to append with and id not containing spaces). Click
"Ok". Press Ctrl+S to save your expansion. Click "Ok" in the resulting dialogue
box. Reload the application. Load your previously saved expansion with the
surface map. It will crash.
To determine that it is caused by the surface map, you can repeat this by
loading a file without a surface map and it will open without problems.
Alternatively: Download this: http://www.redshift.hu/quest/editor.zip . Extract
contents. Download this:
https://www.dropbox.com/s/4zxh11sgyj5b47c/TheQuestTest.pdb?dl=0 and save the
file to the folder containing the contents of the zip file. Run
"TheQuestEditor.exe". At the top toolbar, click "File", then "Load". Open
"TheQuestTest.pdb". It will also crash.
--
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=46154
Bug ID: 46154
Summary: Doxie 2.10.3 (any ver, really): Crashes when exporting
PDF with OCR (ABBYY FineReader Engine OCR SDK)
Product: Wine
Version: 3.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stgarf+winebugs(a)gmail.com
Distribution: ---
Created attachment 62793
--> https://bugs.winehq.org/attachment.cgi?id=62793
Doxie_ABBYY_Finereader_Crash_CommandLineInterface.exe
Doxie is an application that goes with my portable document scanner. It copies
the scans off the scanner and allows you to export them. A great feature is
that it exports them with OCR using ABBYY technology that's licensed to
application.
Doxie crashes when exporting a scan with a OCR'd (I'm assuming it's using ABBYY
FineReader Engine? but I have no idea, was just browsing) text.
My bug is extremely similar to the following:
https://bugs.winehq.org/show_bug.cgi?id=15361 (Closed/Abandoned)
https://bugs.winehq.org/show_bug.cgi?id=30626 (Closed/Fixed) (Doesn't seem
fixed... :p)
https://bugs.winehq.org/show_bug.cgi?id=39184 (UNCONFIRMED)
- Comment #3 (from ~6 years ago says it's fixed..):
https://bugs.winehq.org/show_bug.cgi?id=30626#c3
Wine version: wine-3.0 (Ubuntu 3.0-1ubuntu1)
OS: Linux chrx 4.8.17-galliumos #1 SMP PREEMPT galliumos4 Thu Feb 23 02:27:28
UTC 2017 x86_64 x86_64 x86_64 GNU/Linux (It's a 2013 Chromebook Pixel).
Crash dump and screenshot of error message attached.
--
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=39184
Bug ID: 39184
Summary: Doxie: Error Creating OCR File in Doxie.exe
Product: Wine
Version: 1.7.50
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: m(a)2kmark.com
Distribution: ---
Created attachment 52230
--> https://bugs.winehq.org/attachment.cgi?id=52230
Command Line Debug Log
Prereqs:
1. Install Doxie
(http://www.getdoxie.com/resources/files/old/DoxieSetup_2_6.exe)
2. Import JPG files.
To reproduce:
1. Click on any imported JPG file.
2. Click "Save."
3. Choose as PDF OCR (B&W or Color).
4. Save anywhere.
It seems to call a program called CommandLineInterface.com (inside OCR folder)
and has some components from ABBYY.
PS - Same problem on the newest version 2.8.1.
--
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=17331
Summary: ABBYY ScanTo Office 1.0 Demo: program doesn't run, no
output on console
Product: Wine
Version: 1.1.14
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.strich.b(a)web.de
ABBYY ScanTo Office 1.0 is a GUI application. I got the demo at
http://fr7.abbyy.com/scanto/Scanto01TB.exe
The install works (with lots of fixme's and err's), but when I try to run
ScanToOffice.exe, nothing happens. No log output on console, even with
WINEDBG="+trace,+all"
--
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=32771
Bug #: 32771
Summary: Euro Truck Simulator 2 in-game radio does not work
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmlipman(a)gmail.com
Classification: Unclassified
When I try to play an internet radio station in Euro Truck Simulator 2, the
stream doesn't play. This error is printed in my terminal:
err:ole:CoGetClassObject class {187463a0-5bb7-11d3-acbe-0080c75e246e} not
registered
err:ole:CoGetClassObject no class object {187463a0-5bb7-11d3-acbe-0080c75e246e}
could be created for context 0x1
How to reproduce:
1. Open game
2. Open radio menu
3. Update from internet if list is empty
4. Choose a stream and click play
What I expected:
The stream should start playing
What I got:
The stream does not play
--
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=43826
Bug ID: 43826
Summary: Tomb Raider (1996) GOG now launches only in safe mode
Product: Wine
Version: 2.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeffry84(a)hotmail.it
Distribution: ---
The game used to work fully on the Wine version provided on Debian Jessie, but
ever since I've switched to Wine Devel the game runs only in safe mode, with
less colours and lower resolution. I've tried every graphical option in its
Dosbox configurator (previously Direct3D and OpenGL were the best options but
they don't work now). It's of course a Dosbox game but as it worked before I'm
sure the issue is not on their end.
I'm sorry I can't be more specific, but if further testing or info are needed
just ask
--
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=43612
Bug ID: 43612
Summary: Running on Unsupported OS. OS is not Windows 7 or
later
Product: Wine
Version: 2.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: chrnoboost(a)mailinator.com
Distribution: ---
Created attachment 59028
--> https://bugs.winehq.org/attachment.cgi?id=59028
Error: Running on Unsupported OS. OS is not Windows 7 or later
Setup & Installation
1. Installed Wine-2.15 staging via package installer
2. pass in WINEARCH=win32 and WINEPREFIX=[some perfix] to winecfg. Directory is
not pre-made, so Wine created the directory and did the work.
3. chose Windows 7 and enabled CSMT, VAAPI, EAX under "Staging" tab in winecfg
3. Used Winetricks to install vcrun 2005 - 2015, vcrun6, vcrun6sp6; msxml4 and
6;msc40 and 42 to run Clip Studio Paint 1.6.2
Installed Clip Studio Paint 1.6.2 and started the software with stylus on
tablet ready for use.
Running the software
I got an error saying "Running on unsupported OS. OS is not Windows 7 or later"
--- This software runs on Windows 7. I ran this software on a Windows 7 64bit
machine before.
Clicked passed it, and the workspace loads but I couldn't draw on the canvas. I
get no response from either stylus nor mouse.
--
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=35061
Bug #: 35061
Summary: Expression: "&get.map.unlocked()==m"
Product: Wine-gecko
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: marvin25(a)telus.net
Classification: Unclassified
When trying to install goldcoin-0.7.1.7-win32-setup app the system indicates it
needs Gecko and it can auto download. I download but then message is:
"Assertion failed" and it shows
C:\deps\boost/interprocess/detail/windows_intermodule_sin?eton.hpp
Line 145
Please note the question mark above is a letter that I wrote down but can't
make it out now.
It also shows Expression: "&get.map.unlocked()==m"
--
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=45267
Bug ID: 45267
Summary: Crash Windows Movie Maker
Product: Packaging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: andrearame(a)gmail.com
CC: michael(a)fds-team.de, sebastian(a)fds-team.de
Distribution: ---
Created attachment 61510
--> https://bugs.winehq.org/attachment.cgi?id=61510
Wine crashes when I run "Windows Movie Maker"
Wine 1.6.2
Windows movie maker .exe file start but don't open the file because there is a
program error
--
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=25764
Summary: Windows Movie Maker breaks uninstaller.exe
Product: Wine
Version: 1.3.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cheery314(a)hotmail.com
Created an attachment (id=32834)
--> (http://bugs.winehq.org/attachment.cgi?id=32834)
Debugger log
After I installed WIndows Movie Maker 2.6, it did not work, so I decided to
remove it. But uninstaller.exe (WINE built in one) now crashes.
--
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=10788
Summary: Windows Movie Maker, install OK... but hangs up after
start
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lmiranda(a)lexplan.cl
CC: lmiranda(a)lexplan.cl
When i start the Windows Movie Maker (after normal install), the software hangs
up.
Then i need to force quit.
The error is:
wine: Call from 0x7b843f50 to unimplemented function
gdiplus.dll.GdipCreateBitmapFromHICON, aborting
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37611
Bug ID: 37611
Summary: Application show "The Application Data folder for
Visual Studio could not be created" message
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lokesh.bhandari(a)enjayworld.com
Distribution: ---
Created attachment 50058
--> https://bugs.winehq.org/attachment.cgi?id=50058
Image of error mesasge
Application show "The Application Data folder for Visual Studio could not be
created" message while running the visual basic 2010 express.
I had done this procedure ---> mkdir -p "$(winepath
"C:\Users\\$USER\\Application Data\Microsoft\VisualStudio\10.0")"
But still show same message that application data folder for visual studio
cound not be created.
My wine version is 1.7.15 and I had tried to install with 1.7.31 but it now
works.
--
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=23601
Summary: Windows Movie Maker 2.6: installs but does not start
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ajparag(a)yahoo.co.in
Windows movie maker 2.6 crashes as soon as i click on the launch button. no
error message is displayed.
A suggestion: the new 1.2 RC-7 version supports icon images for .exe files but
it does not support for .msi files. kindly see if that can be added too.
--
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=16971
Summary: Windows Movie Maker needs ole32.dll.StgOpenPropStg
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bunglehead(a)gmail.com
Created an attachment (id=18751)
--> (http://bugs.winehq.org/attachment.cgi?id=18751)
crash trace
Movie Maker installs without any problems without any overrides.
After a start it immediately crashes calling unimplemented
ole32.dll.StgOpenPropStg.
--
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=41594
Bug ID: 41594
Summary: SciTE text editor shows random desktop parts instead
of white background
Product: Wine
Version: 1.9.21
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
If dwrite is disabled in winecfg, SciTE works as expected. When used in fresh
Wine prefix, SciTE shows random noise and console is flooded by this pattern:
fixme:d3d:wined3d_buffer_create Ignoring access flags (pool).
fixme:d3d11:d3d11_immediate_context_OMSetBlendState Per-rendertarget blend not
implemented.
fixme:d3d11:d3d11_immediate_context_OMSetBlendState Color mask > 3 not
implemented.
fixme:d3d11:d3d10_device_RSSetViewports Multiple viewports not implemented.
fixme:d3d11:d3d10_device_RSSetScissorRects Multiple scissor rects not
implemented.
fixme:d2d:d2d_d3d_render_target_Flush iface 0x7df2e0, tag1 (nil), tag2 (nil)
stub!
--
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=36499
Bug ID: 36499
Summary: Small .NET based Direct2D example app needs
ID2D1Factory::CreateHwndRenderTarget implementation
Product: Wine
Version: 1.7.19
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 Henri is working on adding Direct2D support to Wine I thought it might be
useful to collect (example) apps to target method stubs.
One can find many Direct2D examples on MSDN - unfortunately they are only
provided in source, to be compiled with Platform/DirectX SDK/Visual Studio.
I found some small precompiled Direct2D "tutorial" apps.
Example here:
http://www.rolandk.de/index.php?option=com_content&view=category&id=15:dire…
Prerequisite: 'winetricks -q dotnet20'.
The example makes use of 'SlimDX' Framework/library which provides a managed
wrapper around Microsoft DirectX.
--- snip ---
$ WINEDEBUG=+tid,+seh,+loaddll wine ./Articles.Tutorials.Direct2D.exe
...
002a:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\d2d1.dll"
at 0x7dcf0000: builtin
002a:fixme:d2d:d2d_factory_init Ignoring factory type and options.
002a:fixme:d2d:d2d_factory_CreateHwndRenderTarget iface 0x1b3720, desc
0x33e390, hwnd_rt_desc 0x33e380, render_target 0x33e368 stub!
....
SlimDX.Direct2D.Direct2DException: E_NOTIMPL: The function called is not
supported at this time (-2147467263)
at SlimDX.Result.Throw[T](Object dataKey, Object dataValue)
at SlimDX.Result.Record[T](Int32 hr, Boolean failed, Object dataKey, Object
dataValue)
at SlimDX.Result.Record[T](Int32 hr, Object dataKey, Object dataValue)
at SlimDX.Direct2D.WindowRenderTarget.Init(Factory factory,
RenderTargetProperties renderTargetProperties, WindowRenderTargetProperties
windowRenderTargetProperties)
at SlimDX.Direct2D.WindowRenderTarget..ctor(Factory factory,
WindowRenderTargetProperties windowRenderTargetProperties)
at Articles.Tutorials.Direct2D.Chapter1.InitializeGraphics()
at Articles.Tutorials.Direct2D.Chapter1.OnHandleCreated(EventArgs e)
at System.Windows.Forms.Control.WmCreate(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.UserControl.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 ---
$ sha1sum Articles.Tutorials.Direct2D.zip
9e29ae58cd2f684c909a0ab714e2097fe497c8c9 Articles.Tutorials.Direct2D.zip
$ du -sh Articles.Tutorials.Direct2D.zip
2.0M Articles.Tutorials.Direct2D.zip
$ wine --version
wine-1.7.19-47-g704d169
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=36860
Bug ID: 36860
Summary: Molot VST stop working in Wine 1.7.20
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xj(a)wp.pl
Created attachment 48954
--> http://bugs.winehq.org/attachment.cgi?id=48954
Backtrace
Molot ( http://vladgsound.wordpress.com/plugins/molot/ ) stop working in Wine
1.7.20. Not working in 1.7.21 as well. In Wine 1.7.19 it works.
--
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=45721
Bug ID: 45721
Summary: SimpleHelloWorld application displays contents
incorrectly
Product: Wine
Version: 3.14
Hardware: x86
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: svyatpro(a)gmail.com
DWriteHelloWorld.exe draw words and characters incorrectly.
--
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=41004
Bug ID: 41004
Summary: HAM RADIO DELUXE Bug
Product: Wine
Version: 1.9.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: magellan.2000(a)free.fr
Distribution: ---
Created attachment 55169
--> https://bugs.winehq.org/attachment.cgi?id=55169
Unhandled exception: page fault on read access to 0x016ca000 in 32-bit code
(0xf74a12e5)
Unhandled exception: page fault on read access to 0x016ca000 in 32-bit code
(0xf74a12e5)
In Satellite Tracker when we double click on a pass prediction to track the
satellite, the software crash and exit.
This bug exist in all Wine versions, not only the last.
--
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=41450
Bug ID: 41450
Summary: Wine Debug Channel +timestamp, timestamp missing from
some entries
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: brewmanz(a)gmail.com
Distribution: ---
Created attachment 55817
--> https://bugs.winehq.org/attachment.cgi?id=55817
Log with missing timestamps
example of log with +timestamp,+tid (note timestamp missing for 7 lines
starting with 'Call PE DLL'):
--
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.