https://bugs.winehq.org/show_bug.cgi?id=38484
Bug ID: 38484
Summary: The ZMR game does not open.
Product: Wine
Version: 1.7.41
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 4i20(a)mail.com
Distribution: ---
Created attachment 51325
--> https://bugs.winehq.org/attachment.cgi?id=51325
logDebugger
The ZMR game does not open.
About the game: http://zmr.enmasse.com/
Thanks for any help, stay with God.
--
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=12071
Summary: MSI SQL joins on tables with many rows are extremely
slow
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: truiken(a)gmail.com
ReportedBy: truiken(a)gmail.com
CC: ead1234(a)hotmail.com
With the current implementation of MSI SQL joins, we perform a Cartesian
product on the tables joined together. In the case where there is no WHERE
clause, this is the correct output, but if there is a WHERE clause, we still
perform the Cartesian product and then filter on the WHERE clause. Though it's
uncommon, there are a few installers (Visual Studio, Nero Express 7) that join
tables with thousands of rows. For example, say we have tables A, B, and C
s.t.
colA colB colC
----- ----- -----
1 1 1
2 2 2
... ... ...
1000 1000 1000
and we have the query
SELECT * FROM A, B, C WHERE `colA`=1 AND `colB`=1 AND `colC`=1
then the current implementation will create a new table with those columns
containing 1000*1000*1000=1 billion rows. Then we check each of the 1 billion
rows for any matches. There are several algorithms for optimizing joins:
http://en.wikipedia.org/wiki/Join_(SQL)#Join_algorithms
The solution I'll be working on is the merge join. This solution parses the
WHERE clause, starting with the two tables that the columns of the clause
belong to (colA -> A, colB -> B, etc) and joins those together, making sure to
eliminate rows based on the WHERE clause. Then the next table in the clause is
merged into the previously created table, eliminating rows. This continues
until there are no tables left. One optimization of this solution is to start
with parts of the WHERE clause that compare against literals. For example, the
query:
SELECT * FROM A, B, C WHERE `colA` = `colB` AND `colB` = 1 AND `colC` = 1
We'd start with "`colB` = 1" since the comparison is against a literal. We
perform 1000 comparisons on the rows of table B (count = 1000). The resulting
table is:
colB
----
1
then we do the same for table C (count = 1000), and the merged table is:
colB colC
---- ----
1 1
next we merge this table with table A:
colA colB colC
---- ---- ----
1 1 1
2 1 1
... ... ...
1000 1 1
and we search through this table for the condition `colA` = `colB` (count =
1000). So we've reduced billions of comparisons to 3000.
Unfortunately, the way our SQL engine is implemented, this will not be an easy
task.
--
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=26010
Summary: NI_Multisim won't install
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: business.kid(a)gmail.com
http://www.ni.com/multisim/
I have given this a garbage rating and the page says to file a bug, so here
goes.
You register, and it gives you a downloader. Running the downloader, it slowly
downloads 464mb and writes a file of length 0 bytes :-//. So I used m$, which
is in the house, to download, and tried installing. I have a user set up just
for this, so I can wipe, hack, etc without upsetting anything.
After previous failed attempts I read errors and ran
winetricks gecko corefonts dotnet20sp2 vcrun6sp6 and stuck in dlls as native,
but that didn't help
It seems to want to do these steps
1. Unzip to C:\National Instruments Download - with coaxing it succeeds.
msiexec.exe & setup.exe each consume 49.x% of cpu. msiexec.exe rises to 99% if
keyboard input is wanted. msiexec then took off and grabbed the cpu with no
keyboard input wanted, so I killed it and setup moved on.
2. Next step is to take my name, license number (I used the trial version
option) and setup.exe grabs the cpu until it bombs. It actually works, but I
gather some threads are idle or have crashed, and idle seems to grab full cpu.
It spews msi errors - sampled below
fixme:msi:MsiGetFeatureValidStatesW 1 L"Core.MIFMUI" 0xfce320 stub returning 8
fixme:volume:GetVolumePathNameW (L"C:\\Program Files\\", 0x865818, 19), stub!
fixme:sxs:cache_QueryAssemblyInfo 0x2233470, 0x00000001, L"Microsoft.VC80.CRT,
version=8.0.50727.4053, publicKeyToken=1fc8b3b9a1e18e3b,
processorArchitecture=x86", 0x20fe1d8
fixme:msi:msi_unimplemented_action_stub MsiUnpublishAssemblies -> 10 ignored
L"MsiAssembly" table values
err:msi:ITERATE_Actions Execution halted, action
L"DD_CA_ComregEnterpriseServicesRB_X86.3643236F_FC70_11D3_A536_0090278A1BB8"
returned 1603
fixme:msi:MsiGetMode unimplemented run mode: 0
fixme:advapi:SetNamedSecurityInfoW L"[AAAAAA.LV.NIEF900]\\" 1 4 (nil) (nil)
0x2267efc (nil)
The output onscreen is "Installing .NET 2.0" (already installed) It's step 2 of
6 on the Elvis install, and step 5 of 33 on the full multisim install. After
more msi errors than I considered possible, it craps out executing invalid
instructions on an seh error.
if left running for several hours, it will make C:\National Instruments fill
that with about 500 Megs. It does install a Program\ Filed/blah/blah/Shared
directory with 150 Megs of 8--megs - 1 gig expected.
I have this user here. Tell me what debug trace you'd like and I'll run it.
--
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=10314
Summary: Switched On Schoolhouse 2000 fails to start up
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.familychristianacademy.com/SOStest.html
OS/Version: other
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
While looking at bug 10313, I went looking for a
freely downloadable version of Switched-on Schoolhouse.
The only thing I found so far was a free downloadable placement test
for a school which seems to have been
made with Switched On Schoolhouse 2000.
When you run it, it locks up your X session, and you have
to do alt-control-backspace to shut down the X server
to regain control.
--
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=25343
Summary: mstsc fails when using rdp 7 client protocol
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rgilland1966(a)gmail.com
mstsc fails when using rdp 7 client protocol
error is critical failure
--
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=15270
Summary: Newest MapSource version (6.14.1) doesn't run anymore
with wine 1.1.4
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sbuehne(a)web.de
Created an attachment (id=16066)
--> (http://bugs.winehq.org/attachment.cgi?id=16066)
wine error during startup of mapsource
I could run successfully mapsource version 6.11 inlcuding all functions with
wine version 1.1.4 on openSuse 11.0
After applying an upgrade to the software mapsource, wine crashes during
program start with the error message:
...
wine: Unhandled page fault on write access to 0x003c1000 at address 0x9863ab
(thread 0009), starting debugger...
Unhandled exception: page fault on write access to 0x003c1000 in 32-bit code
(0x009863ab).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:009863ab ESP:0033e0b8 EBP:0033e0c0 EFLAGS:00010202( - 00 - -RI1)
EAX:003c0000 EBX:011d0d70 ECX:01ffffce EDX:00000000
ESI:011d1d70 EDI:003c1000
..
I have created a trace file for this error with the command:
echo quit | WINEDEBUG=+relay wine MapSource.exe >& filename.out;
and tailed the last 1000 lines to the attached log file, inlcuding the error
message.
--
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=29212
Bug #: 29212
Summary: Pegasus Mail v. 4.62 build 191 generates msg "Invalid
variant type" & "Invalid variant operation"
Product: Wine
Version: 1.3.33
Platform: x86
URL: http://download-us.pmail.com/w32-462.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccarthy(a)volny.cz
Classification: Unclassified
Created attachment 37716
--> http://bugs.winehq.org/attachment.cgi?id=37716
debug log
wine 1.3.33
Pegasus Mail: v4.62 build 191
IERendered: 2.4.5.18 disabled
Upon start up, Pmail generates two messages: Invalid variant type and Invalid
variant operation
--
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=18330
Summary: MapSource won't recognize Garmin Edge 705 via
MassStorage
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Erbureth(a)seznam.cz
Created an attachment (id=20872)
--> (http://bugs.winehq.org/attachment.cgi?id=20872)
Full log from MapSource 6.13.5 in wine 1.1.20 run.
Last few versions of Wine, I have not been able to use MapSource 6.13.5
software with my Garmin Edge705 unit to it's full extent, for MapSource is
unable to recognize the unit and therefore it cannot communicate with. Last
time it worked, I was using Wine 1.0.0, and when I downgraded from 1.1.20 to
1.0.1, it worked again. Wine log is attached. If there are any other tests I
can perform to help diagnose the problem, just let me know.
--
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=42609
Bug ID: 42609
Summary: Rockstar Games Social Club crashes with subprocess.exe
Product: Wine
Version: 2.3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 57554
--> https://bugs.winehq.org/attachment.cgi?id=57554
backtrace
After launching Max Payne 3 Rockstar Games Social Club crashes with
subprocess.exe and after hitting 'Close' button crash repeats.
Also game stuck at Initializing process.
fixme:dxgi:dxgi_swapchain_Present Unimplemented flags 0x1
fixme:dxgi:dxgi_swapchain_GetDesc iface 0x2e3d55a8, desc 0x2ebbe0f8 partial
stub!
fixme:dxgi:dxgi_swapchain_GetDesc Ignoring ScanlineOrdering, Scaling and
SwapEffect.
fixme:system:IsProcessDPIAware stub!
fixme:dxgi:dxgi_swapchain_Present Unimplemented flags 0x1
fixme:dxgi:dxgi_swapchain_Present Unimplemented sync interval 1
wine-2.3-67-g9eecacb
--
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=12527
Summary: radio button groups don't work with up/down arrow keys
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://winmerge.org/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: msclrhd(a)gmail.com
1. Open an application that has a radio button group, e.g.:
* WinMerge (http://winmerge.org/)
* Some installers
I will use WinMerge as the example for the rest of this bug report:
2. Press Ctrl+N to create a new document
3. Enter "A" in the "Untitled left pane"
4. Enter "B" in the "Untitled right pane"
5. Close the application
This will bring up a "Save modified files?" dialog. NOTE: Using tab to navigate
around the dialog sets the focus to the correct items in the correct sequence.
6. Press the left mouse button on one of the "Save changes" radio buttons
7. Press the down arrow key
This should select the "Discard changes" radio button. The button has the
focus, but is not selected. As a workaround, pressing the space key will select
the button.
8. Press the down arrow key
This should select the "Save changes" radio button, cycling the radio button
grouping. This does not work. If you are on the bottom group, it selects the
"Discard All" button. If you are on the top group, no item is selected and
pressing the down arrow key again selects the "Untitled right" edit box.
9. Press the left mouse button on one of the "Discard changes" radio buttons
10. Press the up arrow key
This should select the "Save changes" radio button. The button has the focus,
but is not selected. As a workaround, pressing the space key will select the
button.
11. Press the up arrow key
This should select the "Discard changes" radio button, cycling the radio button
grouping. This does not work. If you are on the bottom group, it selects the
"Untitled left" edit box. If you are on the top group, it selects the "Untitled
right" edit box.
--
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=16845
Summary: Radio buttons not being checked on focus
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.chiark.greenend.org.uk/~sgtatham/putty/downlo
ad.html
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: munozferna(a)gmail.com
Current wine behavior is to just assign the focus to the radio button, however,
Windows checks the radio button when it gets focus through the keyboard arrows.
Steps to reproduce:
1. Open putty
2. Click the Raw radio button
3. Press right arrow twice
Actual results
* Port textbox stays at 23
* Rlogin radio button is not checked
Expected results (windows behavior)
* Port textbox changes to 513
* Rlogin radio button is checked
I'm attaching a patch that I believe fixes this, comments about it would be
appreciated.
--
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=11095
Summary: some keyboard shortcuts do not work in the celestia
installer
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
I've seen this problem in some programs, but not others. Here's one problem
where it happens:
In the Celestia installer, on the initial page, it asks you to accept the GPL
license. By default, the radio button has "do not accept" selected.
On Windows, I can press "alt + a" to select the "accept" radio button. On Wine,
the "accept" button gets focus when I press "alt + a", but the radio button
doesn't get selected.
--
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=23525
Summary: Daytona USA Evolutions: some text/graphics are black,
should be colored
Product: Wine
Version: 1.2-rc6
Platform: x86
URL: http://sega.jp/pc/daytonae/trial.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=29366)
--> (http://bugs.winehq.org/attachment.cgi?id=29366)
wine screenshot
It's an old Direct 6.1 game...luckily, it's got a free download (only 42 mb).
Run the game, press enter repeatedly, and start the game. You'll see your car,
but the speedometer/time/etc. are all black. I'll attach a windows screenshot
for comparison.
Terminal output is pretty short:
fixme:win:WINNLSEnableIME hUnknown1 (nil) bUnknown2 0: stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f1a8,0x00000000), stub!
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x164150,0x164098): stub
fixme:d3d:swapchain_init The application requested more than one back buffer,
this is not properly supported.
Please configure the application to use double buffering (1 back buffer) if
possible.
fixme:heap:RtlCompactHeap (0x110000, 0x0) stub
err:ole:CoUninitialize Mismatched CoUninitialize
fixme:d3d:IWineD3DDeviceImpl_Release (0x1584e0) Device released with resources
still bound, acceptable but unexpected
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x342ced0 with type
WINED3DRTYPE_SURFACE (0x1).
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x3417c90 with type
WINED3DRTYPE_SURFACE (0x1).
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x342ea78 with type
WINED3DRTYPE_SURFACE (0x1).
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x38bb6d8 with type
WINED3DRTYPE_SURFACE (0x1).
--
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=31348
Bug #: 31348
Summary: Can't select the file from popup
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kenorb(a)gmail.com
Classification: Unclassified
I'm using the software called: EX4-TO-MQ4 Decompiler 4.0.427 (Demo)
Free available from: http://purebeam.biz/#download_decompiler
But it doesn't work, because I can't select the file.
Here are some logs:
I'm starting it:
$ wine ex4_to_mq4_demo.exe
fixme:msg:ChangeWindowMessageFilter 233 00000001
fixme:msg:ChangeWindowMessageFilter 4a 00000001
fixme:msg:ChangeWindowMessageFilter 49 00000001
fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
(last message repeats couple of times with 0 and -1, possible when the
application is focus or not).
Then I'm clicking 'Decompile...' button to select the file.
I've following logs:
fixme:commdlg:IServiceProvider_fnQueryService Interface
{e07010ec-bc17-44c0-97b0-46c7c95b9edc} requested from unknown service
{e07010ec-bc17-44c0-97b0-46c7c95b9edc}
fixme:shell:ViewModeToListStyle ViewMode 0 not implemented
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1026, a003, 0,
0x33e93c)
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1026, a004, 0,
0x33e93c)
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1025, a003, 1,
0x33e93c)
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1025, a004, 1,
0x33e93c)
fixme:nstc:NSTC2_fnSetControlStyle2 mask & style (0x00000004) contains
unsupported style(s): 0x00000004
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
The file selection popup appeared, so I can select the file.
Once I've clicked on the file, I've following messages:
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 6
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 6
(last message repeats around 40 times more at the same time)
fixme:shell:IShellBrowser_fnOnViewWindowActive stub, 0x164e20 (0x165368)
Selecting the file (some.ex4), I've following messages:
fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 6
(the last message - many of them)
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
fixme:shell:IShellItemArray_fnEnumItems Stub: 0x173c40 (0x33f83c)
After that no files were selected.
Also I can't type manually in 'File' textbox.
The other think which doesn't work, is dropping the file, but I assume it's not
supported in Wine.
I've seen some similar errors in following tickets:
http://bugs.winehq.org/show_bug.cgi?id=27936http://bugs.winehq.org/show_bug.cgi?id=23525http://bugs.winehq.org/show_bug.cgi?id=11095
And those somebody else pastebins contains exact message which I've:
http://pastebin.com/rx9xRPKYhttp://pastebin.com/QW8T25Xh
which is: 'fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!'
Basically my goals is to try this program, but it simply doesn't work as
expected.
P.S. I've compiled latest version from Git from the sources on Mac, so
eventually I could apply some patches or write some (if I'll have some good
directions) to test it.
Thank you.
--
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=39009
Bug ID: 39009
Summary: "Importance" link on bug report form opens in wrong
place on fields descriptions page
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
The fields description page has two sections for Importance. The first one is
right below the status definitions table; right below it are the definitions
for Priority and Severity (which is what users need to see). The second
Importance section is toward the bottom of the page, and it just describes the
field as "the combination of its Priority and Severity" without the severity
definitions anywhere in sight.
Clicking the Importance link on the bug report form opens the page at the
second Importance section when it should open at the first one (or even better,
at the Severity section, since that's what we really want users to see). The
result is that users don't see the actual definitions for severity even if they
do bother to click the link.
--
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=46264
Bug ID: 46264
Summary: crushing of programm tygemglobal.exe
Product: Wine
Version: 3.0.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: patrik.macek1(a)gmail.com
Distribution: ---
Created attachment 62968
--> https://bugs.winehq.org/attachment.cgi?id=62968
logfile
running program - tygemglobal.exe is crushing. not immediately, but after short
time of running the programm. with previous version of wine this behaivior was
not 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=45817
Bug ID: 45817
Summary: foobar2000 GUI transparency broken ("playlist tab drag
target" has opaque background)
Product: Wine
Version: 3.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jimbo1qaz(a)gmail.com
Distribution: ---
Created attachment 62277
--> https://bugs.winehq.org/attachment.cgi?id=62277
foobar2000 tab-drag icon bug (virtualbox)
In foobar2000, dragging a playlist tab (for example Default tab) creates a
T-shaped icon depicting the new position of the tab.
In Wine 3.15 in Debian Virtualbox (KDE with compositor=XRender), the icon is
rendered with a light-green background #eeffc0 instead of transparency. (hmm,
it's byteswapped c0ffee, is this intentional?) When I move my cursor away from
the tab bar, both the cursor and the background color fade out normally.
On my Kubuntu dual-boot without Virtualbox, I get a massive rectangle of
corrupted memory. Maybe my Intel i5-6200U GPU drivers are at fault, as I get
random corruption in KDE including transparent/flickering titlebars without
Wine running. I mostly worked around them by switching to XRender.
--------------
Additionally when I run foobar2000 with Wine without no audio output, and open
Preferences (Ctrl+P) and click on Playback/Output, "Device" is blank and I get
a popup "Please select a valid output device". The bug is the popup's
background appears to be uninitialized memory.
(Fun fact: The popup remains always on top, even when you switch windows and
move them over foobar2000. xkill and clicking the popup does nothing.)
--
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=44358
Bug ID: 44358
Summary: FaceIt client doesn't allow registration
Product: Wine
Version: 3.0-rc6
Hardware: x86
URL: https://cdn.faceit.com/electron/release/FACEIT-setup-l
atest.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Blocks: 44355
Distribution: ---
To use the program one needs an account, but the client doesn't allow
registration: "Email Addresses from that domain are not permitted."
It works on my Win7 VM, but but on wine-3.0-rc6 and wine-staging-2.21.
--
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=33292
Bug #: 33292
Summary: Vietcong: Disc can't be authenticated
Product: Wine
Version: 1.5.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
Starting Vietcong with the original disc will result the most times in the
error message "Unable to authenticate original disc within time limit.".
Clicking on "Retry" will continue the authentication process but the vietcong
process will then close after a few seconds. The only message the terminal is
showing is "fixme:ntdll:server_ioctl_file Unsupported ioctl 2d1400 (device=2d
access=0 func=500 method=0)".
--
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=45235
Bug ID: 45235
Summary: Adobe Digital Editions 2.0.1 not running
Product: Wine
Version: 3.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: peer_1(a)yahoo.de
Distribution: ---
Created attachment 61465
--> https://bugs.winehq.org/attachment.cgi?id=61465
Debug file created by wine
After installing a new prefix, I installed windowscodecs and corefonts. I was
finally able to install dotnetfx35 SP1 but ADE still won't work.
It is installed but crashes with 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=43306
Bug ID: 43306
Summary: LEGO Harry Potter unable to detect DualShock 4
Product: Wine
Version: 2.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hid
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
Created attachment 58651
--> https://bugs.winehq.org/attachment.cgi?id=58651
LEGO Harry Potter: Years 1-4 with Dualsock 4
I have a Dualshock 4 controller (Model: cuh-zct2e) and this is not detected at
all in Lego Harry Potter: Years 1-4. The game uses dinput8.
My Dualshock 3 is detected as expected. I guess there is a mapping issue.
I've attached a 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=39498
Bug ID: 39498
Summary: LEGO Rock Raiders - Using bundled d3drm.dll causes
freezing
Product: Wine
Version: 1.7.50
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: david.maza.au(a)gmail.com
Distribution: ---
Created attachment 52637
--> https://bugs.winehq.org/attachment.cgi?id=52637
Compressed Trace Log
Hello,
If I use the bundled d3drm.dll version to play Lego Rock Raiders, the game
freezes after the first screen.
The music continues to play in the background but the game is unplayable.
Interestingly, holding down a key on my keyboard stops the freezing. For
example, holding down the Alt+Tab key combination causes the game to continue
rendering items on the screen.
Unfortunately using the native d3drm.dll doesn't work and causes a crash on
startup (bug #39497).
--
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=31072
Bug #: 31072
Summary: Diablo III: Sound is very quiet
Product: Wine
Version: 1.5.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
If some NPC's are talking for example if I'm finding a book with a story I have
troubles to understand them because the voices are very quiet. I have already
set all ingame sound to 100% and have still to need to turn up much my sound
boxes. Only the cinematics have a loud (normal) sound.
--
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=39072
Bug ID: 39072
Summary: Olympus Viewer crashes when it tries to process ORF
files
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: samkochkarev(a)gmail.com
Distribution: ---
Created attachment 52056
--> https://bugs.winehq.org/attachment.cgi?id=52056
backtrace
Both issues are related - you can either start Export or just press the
triangle to start raw processing.
--
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=46509
Bug ID: 46509
Summary: WinOmega client editor causes Access violation in
module ntdll.dll
Product: Wine
Version: 4.0-rc7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: development(a)winomega.com
Distribution: ---
Created attachment 63359
--> https://bugs.winehq.org/attachment.cgi?id=63359
access violation error
Starting with c9e98034b37f44d505ba406f94031d02e226a176, an Access violation is
caused when trying to access the client editor in WinOmega.
(the client editor is a window that includes some ComboBox objects, and it
appears that one of them is propagating the exception)
See attachment for the error message.
--
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=46209
Bug ID: 46209
Summary: TB_GETBUTTONINFO does not return toolbar text
Product: Wine
Version: 3.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: nikolaysemenkov(a)gmail.com
Distribution: ---
Hi,
Wine failed to return the toolbar text, even if just successfully add it, then
next attempt to get it in a row also failed.
Code:
TBBUTTON tbb;
tbb.idCommand = 123;
tbb.iBitmap = I_IMAGENONE;
tbb.fsState = TBSTATE_ENABLED;
tbb.fsStyle = BTNS_BUTTON;
tbb.dwData = 0;
tbb.iString = int(SendMessage(hwndToolBar, TB_ADDSTRING, 0,
LPARAM(TEXT("TEXT2TEST"))));
SendMessage(hwndToolBar, TB_ADDBUTTONS, 1, LPARAM(&tbb));
int nItem = 0;
tchar szLabel[LSTR];
TBBUTTONINFO tbbi;
tbbi.cbSize = sizeof(TBBUTTONINFO);
tbbi.dwMask = TBIF_BYINDEX | TBIF_TEXT;
tbbi.pszText = szLabel;
tbbi.cchText = LSTR;
SendMessage(hwndToolBar, TB_GETBUTTONINFO, WPARAM(nItem), LPARAM(&tbbi));
tbbi.pszText is empty on wine, but works on windows.
Nik
--
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=40321
Bug ID: 40321
Summary: Install of Huion H610Pro Drawing Tablet fails ...
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dave_m16(a)hotmail.com
Distribution: ---
Created attachment 53973
--> https://bugs.winehq.org/attachment.cgi?id=53973
the show details on serious error
Serious error --- details attached --- thanks
--
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=37227
Bug ID: 37227
Summary: Button clicks are ignored in the application
Product: Wine
Version: 1.7.25
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dick.kniep(a)lindix.nl
We are using Go-Global for UNIX v2.2.19 to connect to our servers.
(Download from
ftp://ftp.graphon.com/pub/GO-Global-UX/v2.2.19/go_setup_2.2.19.1222.exe)
This used to work pretty good with wine in the past. But with wine 1.7.25, as
soon as a graphical program is started, any mouseclick in the screen is
ignored, rendering the application useless.
You can use one of our servers to verify.
Steps to reproduce:
1. install under wine: works OK
2. choose secure socket as transport
3. connect to demo.cvix.nl
4. login using winetest/winetest as credentials
Then you will get a window with a firefox icon.
You can type in the bar and will get a website. Try a website where a
buttonclick is required and you will notice that this will not work. It simply
ignores the click event.
BTW. There is another problem with the keyboard. We are using a US-intl
keyboard, but it insists in using a Dutch keyboard where the keys are mapped to
different locations.
--
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=41691
Bug ID: 41691
Summary: I am trying to run The Political Machine 2016 on steam
and I am presented with the "this program has
encounted a serious problem and needs to close"
message.
Product: Wine
Version: 1.9.21
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 99timb(a)gmail.com
Created attachment 56089
--> https://bugs.winehq.org/attachment.cgi?id=56089
The log error report
I am trying to play The Political Machine 2016 on steam with wine and this is
happening. I'm new so I don't know what to do.
--
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=41393
Bug ID: 41393
Summary: Unable to use CTRL-V shortcut to paste in some
applications
Product: Wine
Version: 1.9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michelesr(a)autistici.org
Distribution: ---
This bug is not present in 1.9.18 and older versions of Wine.
How to reproduce: open the application, then try to press CTRL-V key, nothing
happens.
Verified in "World of Warcraft" and "Warcraft III" games.
OS: Arch Linux, Linux 4.7.4-1 x86_64
--
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=36708
Bug ID: 36708
Summary: Crash during attempt to load SecureDownloadManager.exe
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: fyejm5(a)gmail.com
Created attachment 48753
--> http://bugs.winehq.org/attachment.cgi?id=48753
Unhandled exception: page fault on read access to 0x00710033 in 32-bit code
Successfully installed a .MSI file for a secure downloader specific to licensed
Windows-related software. When attempting to initiate the .exe for the
downloader and load the .SDX file (URL to location of software), Wine crashed
with the attached dump.
--
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=40449
Bug ID: 40449
Summary: Join.me fails to start
Product: Wine
Version: 1.9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kamijoutouma648(a)gmail.com
Distribution: ---
WINEPREFIX=~/.wine/join.me wine ~/Downloads/join.me.exe
err:ntdll:NtQueryInformationToken Unhandled Token Information class 29!
fixme:msvcrt:__clean_type_info_names_internal (0x1000a888) stub
When trying to launch join.me after installing directx9
--
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=29445
Bug #: 29445
Summary: LearningCenter.exe fail to start with mono28 but works
with native .net
Product: Wine
Version: 1.3.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Download from http://cetd.sysu.edu.cn/class/NPELSPluginSetup.rar
2. unrar NPELSPluginSetup.rar
3. winetricks -q mono210
4. install setup_v1.1.0.103(101217).exe
5. start LearningCenter.exe
$ cd "~/.wine/drive_c/Program Files/SFLEP/NPELS_LearningCenter_5.0"
$ wine LearningCenter.exe
The application could not start at all, but with native .net2.0 it can start.
Will attach full logs.
--
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=16577
Summary: ntdll/loader/actctx: add support of SxS assembly binding
redirects
Product: Wine
Version: 1.1.10
Platform: All
URL: http://nikonusa.com/software/NX/1.3/win/CNX130NSAEN.EXE
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
this is a showcase bug.
I used the app from bug 12414 as example because it highlights some of the
issues and hopefully helps to understand the problem (with my comments).
We need to end this winetricks vcrun2XXX SxS mess/hell, which requires direct
match of SxS assembly dependencies/bindings.
Download: http://nikonusa.com/software/NX/1.3/win/CNX130NSAEN.EXE
$ sha1sum CNX130NSAEN.EXE -> f31b38e3bcca17c8050c207b79315c9be23d582d
Prerequisite: clean WINEPREFIX, winetricks dotnet20
---
The first installer show stopper (which is this bug report out) are actually
two bugs: one in winetricks and one in the installer.
When you did 'sh winetricks dotnet20' step and start the installer, an error
message box will be shown shortly thereafter:
--- snip ---
Microsoft Visual C++ Runtime Library
Program: c:\windows\temp\RarSFX0\cnx.exe
R6034
An application has made an attempt to load the C runtime library incorrectly.
--- snip ---
The problem comes in form of a sub-installer dependency:
WINEDEBUG=+tid,+seh,+loaddll,+process wine ./nikon.exe
--- snip ---
...
0079:trace:process:CreateProcessW app (null) cmdline
L"C:\\windows\\temp\\RarSFX0\\cnx.exe"
...
0079:trace:process:CreateProcessW started process pid 007a tid 007b
...
007b:trace:loaddll:free_modref Unloaded module
L"C:\\windows\\temp\\nshbb9d.tmp\\UserInfo.dll" : native
007b:trace:loaddll:load_native_dll Loaded
L"C:\\windows\\temp\\nshbb9d.tmp\\process.dll" at 0x10000000: native
007b:fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT"
007b:trace:loaddll:load_native_dll Loaded
L"C:\\windows\\temp\\nshbb9d.tmp\\LIBEXPATW.dll" at 0x3d0000: native
007b:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\mpr.dll" at
0x60c50000: builtin
007b:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\wininet.dll" at 0x60c00000: builtin
007b:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\msvcrt.dll"
at 0x60c80000: builtin
007b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\MSVCR80.dll"
at 0x78130000: native
007b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\MSVCP80.dll"
at 0x7c420000: native
007b:trace:loaddll:load_native_dll Loaded
L"C:\\windows\\temp\\nshbb9d.tmp\\Activation.dll" at 0x3a0000: native
--- snip ---
The culprit is: "fixme:actctx:parse_depend_manifests Could not find dependent
assembly L"Microsoft.VC80.CRT"
If we dump the embedded manifest from PE for the "Activation.dll":
--- snip ---
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
version="8.0.50727.762" processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
version="8.0.50608.0" processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b">
</assemblyIdentity>
--- snip ---
We can see two VC 8.0 runtime versions referenced, the VC 8.0 SP1 and an older
VC 8.0 one.
"8.0.50727.762" -> Visual C++ 2005 SP1 Redistributable Pack 8.0.50727.762
At this stage, only .NET Framwork 2.0 redist got installed as prerequisite in
WINEPREFIX.
Because of winetricks' winver 2k hack (missing junction point workaround, bug
12401), VC 8.0.50727.42 runtimes are placed in both: system32 and SxS repo.
This results in errorneous behaviour in case of SxS assembly resolver failure
(app references 8.x CRT assemblies not found in SxS) - a fallback load from
system32 - which causes the CRT error.
I already explained the differences between 2K and XP in several other bug
reports when it comes to loading of SxS assemblies.
In short: prevent any CRT (and ATL/MFC) 8.x+ runtime from being put into
system32!
Such assemblies are never to be loaded from system32 with winver > 2K!
To fix this, 'winetricks dotnet20' step needs to include the removal of these
assemblies from system32 as cleanup procedure.
A second copy is properly installed into SxS as precaution from M$ guys in the
light of win2k -> winxp update which knows about activation contexts/SxS.
--- snip .wine/drive_c/windows/system32 ---
$ ls -lsa msvc*
472 -rw-rw-r-- 1 focht focht 479232 2005-09-23 08:29 msvcm80.dll
540 -rw-rw-r-- 1 focht focht 548864 2005-09-23 08:29 msvcp80.dll
616 -rw-rw-r-- 1 focht focht 626688 2005-09-23 08:29 msvcr80.dll
..
--- snip .wine/drive_c/windows/system32 ---
The vendor msi installer bug at this stage is that the sub-installer is
executed *before* the VC redist installer which would install all required CRT
dependencies into SxS.
Hence this error is only shown once.
That sub-installer failure seems not critical.
Now one might think: "ok, lets do the usual winetricks vcrun2005 ...
vcrun2005sp1 mess" before install.
If you do this, the error will still remain (assuming you restart with clean
WINEPREFIX).
The reason is the other "old" VC 8.0 CRT version, referenced in dll manifest:
8.0.50608.0
Winetricks dotnet20 installed a VC 8.0.50727.42 CRT version into SxS (after we
removed the ones from system32).
This would ideally work but Wine's loader doesn't support the redirection of
assembly bindings yet.
If you take a look at the policy file from .NET 2.0 installed VC 8 runtime:
"c:\windows\winSxS\policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c24773\":
--- snip 8.0.50727.42.policy ---
<bindingRedirect oldVersion="8.0.41204.256-8.0.50608.0"
newVersion="8.0.50727.42"/>
--- snip 8.0.50727.42.policy ---
The policy rule would be satisfied, because the assembly asks for version
8.0.50608.0 and the current "up-to-date" version 8.0.50727.42 can be used for
that.
After VC 8.0 SP1 install (sh winetricks vcrun2005sp1), another policy file is
added:
--- snip 8.0.50727.762.policy ---
<bindingRedirect oldVersion="8.0.41204.256-8.0.50608.0"
newVersion="8.0.50727.762"/>
<bindingRedirect oldVersion="8.0.50727.42-8.0.50727.762"
newVersion="8.0.50727.762"/>
--- snip 8.0.50727.762.policy ---
This would cover (match) the first assembly binding dependency, 8.0.50727.762
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=44841
Bug ID: 44841
Summary: GTA 5 rendering issue (green screen/textures) on
NVidia 9800GT
Product: Wine
Version: 3.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Distribution: ---
Created attachment 60887
--> https://bugs.winehq.org/attachment.cgi?id=60887
default terminal output (wine-staging 3.4)
The intro video is all black with sound.
The start menu is all green with GTAV logo in corner.
In-game is green/black mix of polygons/surfaces.
Music, sound, GTA V logo in menu and Player connection pop-ups and social club
window are fine. Can hear gunfire when hitting the fire button.
So basically the game runs but the video rendering is broken.
64bit prefix with Wine-staging 3.4
NVidia 9800GT (1GB VRAM) with Debian-provided NVidia 340.102 proprietary
driver.
Happens both in full-screen(1920x1080) and windowed mode(800x600).
Happens in DX10, DX10.1 and DX11 modes (changed in the game settings file).
With wine 2.12, the intro and menu were fine but the in-game was all messed-up
flickering and stretching gray/black polygons with the player being a static
black silhouette.
Game runs fine with NVidia GTX970.
--
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=38551
Bug ID: 38551
Summary: cl.exe hangs but succeeds on relaunch
Product: Wine
Version: 1.7.42
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xantares09(a)hotmail.com
Distribution: ---
Created attachment 51424
--> https://bugs.winehq.org/attachment.cgi?id=51424
build script output
i'm trying to use microsoft compiler into wine and it hangs compiling a simple
hello world
if i hit ctrl+c in the console and relaunch my build script it succeeds (seems
once the wineserver process it started next builds will succeed. if i kill
wineserver it will fail once more.
I'm using latest wine 1.7.42 on archlinux x86_64 and vc2010express+cmake from
winetricks
i use these install/build scripts for you to reproduce the problem:
https://github.com/xantares/msvc-wine
i get these repeated timeout messages later:
err:ntdll:RtlpWaitForCriticalSection, see build.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.
http://bugs.winehq.org/show_bug.cgi?id=35220
Bug ID: 35220
Summary: Clickr: puzzle table is hidden behind solid color with
built-in d3dx libraries
Product: Wine
Version: 1.7.9
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
Created attachment 46970
--> http://bugs.winehq.org/attachment.cgi?id=46970
terminal output
'Clickr' is a puzzle game, the Steam version comes bundled with native
d3dx9_34.dll.
If I use Wine's built-in d3dx9* dlls the puzzle table is covered by some pink
color.
Either native d3dx9_34 or d3dx9_36 works around the problem and the table is
displayed correctly.
Fedora 19
Nvidia binary drivers 325.15
--
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=33080
Bug #: 33080
Summary: While running DPFMate.exe, Unhandled exception: page
fault on read access to 0x00000004 in 32-bit code
(0x0040ea53).
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jon(a)sprig.gs
Classification: Unclassified
Created attachment 43734
--> http://bugs.winehq.org/attachment.cgi?id=43734
Backtrace
Please see attached backtrace. This is a simple keyring photoframe manager.
Wine is using Ubuntu 12.04, plus the Wine PPA, latest winetricks downloaded
from the SVN (WINETRICKS_VERSION=20120912) to install MFC42U.dll.
After I got similar results to the backtrace, I tried forcing the app to use
the Win2k emulation mode, and then captured this backtrace - probably not the
best idea, but I'm happy to run any other diagnostics.
--
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=31839
Bug #: 31839
Summary: Mouse jumps to the upper left corner of the screen
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
On some games (I noticed this only on Blizzard games) the mouse position is set
on starting/exiting the game to the upper left corner of the screen. Just a few
examples:
- On Diablo 3 this works on starting and exiting the game (independent if
-opengl is used or not).
- On Warcraft 3 (RoC and TFT) this works only on starting the game and if
-opengl is used.
--
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=43816
Bug ID: 43816
Summary: The Witcher 3: white outline on vegetation during rain
at nighttime
Product: Wine
Version: 2.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: shtetldik(a)gmail.com
Distribution: ---
Created attachment 59363
--> https://bugs.winehq.org/attachment.cgi?id=59363
White outline on vegetation during rain at nighttime
When it's raining and it's dark, some vegetation gets a white outline, which is
probably supposed to represent some wet texture. It looks incorrect. See
attached screenshot.
Configuration:
Graphics:
OpenGL renderer string: AMD Radeon (TM) RX 480 Graphics (POLARIS10 / DRM 3.15.0
/ 4.12.0-2-amd64, LLVM 5.0.0)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 17.3.0-devel
(git-4b41361894)
(+Mesa freeze prevention patch).
Wine staging patches applied:
wined3d-buffer_create wined3d-sample_c_lz wined3d-GenerateMips
d3d11-Deferred_Context xaudio2-get_al_format
--
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=40338
Bug ID: 40338
Summary: XenCenter 6.5 doesn't start
Product: Wine
Version: 1.9.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blauerhunger(a)outlook.de
Distribution: Ubuntu
Created attachment 54009
--> https://bugs.winehq.org/attachment.cgi?id=54009
The logfile XenCenter creates in
/home/user/.wine/drive_c/users/user/Application
Data/Citrix/XenCenter/logs/XenCenter.log
When trying to start XenCenter 6.5, it shows an error message "There has been
an unexpected error. Technical details about this error have been saved to the
following file. Please send this to your support representative."
On Windows (at least 7, 8.1 and 10), it works without any problems.
--
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=32760
Bug #: 32760
Summary: Mono not running VB.NET app
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: pwthomas95(a)satx.rr.com
Classification: Unclassified
I tried running the VB.Net app on 1.5.19 with exact same results. When run from
the command line it produces a massive, console over flowing error log. I had a
forum thread so I have the log on pastebin: http://pastebin.com/kh9CLcqM
--
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=40339
Bug ID: 40339
Summary: wine does not detect java
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: boblebarbare2(a)gmail.com
Distribution: ---
Created attachment 54013
--> https://bugs.winehq.org/attachment.cgi?id=54013
minecraft
wine does not detect java by minecraft and write launch4j 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.
https://bugs.winehq.org/show_bug.cgi?id=39725
Bug ID: 39725
Summary: Strat-o-matic baseball (v. 2015g)will not open. The
pop up mearly states "the program SOMBB.exe has
encountered a serious problem and needs to close."
Product: Wine
Version: 1.7.53
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jdpwinters(a)gmail.com
Created attachment 52981
--> https://bugs.winehq.org/attachment.cgi?id=52981
Attached is the report "program error details."
SOM baseball is a baseball simulator using previous stats to recreate player
performance. Commerical software, company website :
http://www.strat-o-matic.com; no free version available.
--
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=38605
Bug ID: 38605
Summary: Games stopped working after upgrading from Wine 1.4 to
1.6/1.7
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kbon(a)gmx.com
Distribution: ---
Created attachment 51500
--> https://bugs.winehq.org/attachment.cgi?id=51500
Backtrace log
Hi, I just recently upgraded my install of Linux Mint Debian Edition from
version 1 to v2, which made Wine upgrade from 1.4x to 1.6 (the latest found on
debian jessie repos), and with it several games (Age of Empires 2, Herts of
Iron 2) which did run flawlessly before the upgrade stopped working altogether.
The error I get on the command line is:
wine: Unhandled page fault on read access to 0x00000000 at address 0x7dc3a0f0
(thread 0009), starting debugger...
I tried recreating the wine prefix, running it with a 32-bit prefix, and
upgrading to wine 1.7 following this guide:
http://forums.linuxmint.com/viewtopic.php?f=238&t=193804
Attached is the backtrace of the error.
My OS: LMDE 2 (Debian 8 )
Kernel: 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3~deb8u1 (2015-04-24) x86_64
GNU/Linux
Video / Driver: [AMD/ATI] Trinity [Radeon HD 7480D] using latest propietary
drivers (fglrx-14.501.1003)
--
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=30376
Bug #: 30376
Summary: Baldurs Gate II (GOG.com version) crashes on loading
specific save games
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpranevich(a)gmail.com
Classification: Unclassified
Created attachment 39718
--> http://bugs.winehq.org/attachment.cgi?id=39718
Crash info
Baldurs Gate II (GOG.com version) crashes on loading specific save games from
certain areas of the game, especially Chapter 7. The identical save games work
on Windows 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.
https://bugs.winehq.org/show_bug.cgi?id=42065
Bug ID: 42065
Summary: WOW 7.1 spams fixme:d3d_draw:draw_primitive_arrays
Start instance (VALUE) not supported.
Product: Wine
Version: 2.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winetest(a)luukku.com
Distribution: ---
The spam comes from here
http://source.winehq.org/git/wine.git/blob/80d2edd5845c09b98cb5b6b7779b4455…
and the function gets different values as shown here as example.
fixme:d3d_draw:draw_primitive_arrays Start instance (23883) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23887) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23889) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23893) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23895) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23899) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23901) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23905) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23907) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78301) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78305) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78309) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78313) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78317) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78319) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78323) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78325) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78329) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78331) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78335) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78337) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89136) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89140) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89144) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89148) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89152) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89154) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89158) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89160) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89164) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89166) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89170) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89172) not supported.
It's just too noicy.
--
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=40042
Bug ID: 40042
Summary: Spikit 1.9.4 fails to install
Product: Wine
Version: 1.9.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Distribution: ---
Created attachment 53496
--> https://bugs.winehq.org/attachment.cgi?id=53496
Error window
Steps to reproduce:
1) remove ~/.wine
2) wine SpikitSetup1.9.4.0.exe
Behaviour:
Error window (see attachment)
Expected behaviour:
No error window.
--
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=31933
Bug #: 31933
Summary: GOG.com installer displays the options menu poorly
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
Classification: Unclassified
Created attachment 42059
--> http://bugs.winehq.org/attachment.cgi?id=42059
screenshot
Here's an example with the Heroes of Might and Magic 5 Bundle. The console
displays these lines in loop.
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 5
fixme:uniscribe:GPOS_apply_PairAdjustment Pair Adjustment Positioning: Format 2
Unhandled
I suspect that all the games from GOG have this issue. Marking the issue to
fonts, as I suspect this has to do with a font that Linux does not have.
--
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=45872
Bug ID: 45872
Summary: Trying to run Destiny 2 in cmd line
Product: Wine
Version: 3.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mfaqiri33(a)gmail.com
Distribution: ---
Created attachment 62377
--> https://bugs.winehq.org/attachment.cgi?id=62377Battle.net launched correctly, Destiny 2 seems to have failed at code 0000014e
I attempted to launch Destiny 2 off the battle.net launcher off of the Lutris
installer for Battle.net. Destiny 2 failed to launch and I received the
backtrace.
--
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=38802
Bug ID: 38802
Summary: error when playing a game
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pdaut01(a)hotmail.com
Distribution: ---
Created attachment 51744
--> https://bugs.winehq.org/attachment.cgi?id=51744
error report from Wine
when I try to play the Pokemon fan game Pokemon Fusion Generation the game
crashes when it asks for my name in that 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.
https://bugs.winehq.org/show_bug.cgi?id=38574
Bug ID: 38574
Summary: Heroes of the Storm 64-bit crashes on launch
Product: Wine
Version: 1.7.42
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adys.wh(a)gmail.com
Distribution: ---
Created attachment 51470
--> https://bugs.winehq.org/attachment.cgi?id=51470
Crash logs
Heroes of the Storm crashes if launching the 64-bit client. Setting it to
32-bit fixes the issue. This has been widely reported outside of Wine.
The game attaches its own debugger so wine's backtraces arent available.
Attached is the game's crash logs including .dmp file.
--
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=44572
Bug ID: 44572
Summary: Amazon Workspaces: Crashing while registering
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: menelaosbgr(a)gmail.com
Distribution: ---
Created attachment 60542
--> https://bugs.winehq.org/attachment.cgi?id=60542
The trace from the crash.
I was missing two DLLs that I copied into the C:/windows and
c:/windows/system32 folders. After the application starts.
But when I click the button to login, I get a crash.
Please see attachment.
--
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=41244
Bug ID: 41244
Summary: App does not open though other software by same dev
does
Product: Wine
Version: 1.9.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: peter(a)peterkempphotography.com
Distribution: ---
Created attachment 55540
--> https://bugs.winehq.org/attachment.cgi?id=55540
Dump file
Though other Anthropics software eg Portrait Pro Studio run fine new software
will not open.
--
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=40543
Bug ID: 40543
Summary: I was trying to run a program and it says that it
can't run it
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: lihezecava(a)leeching.net
Created attachment 54376
--> https://bugs.winehq.org/attachment.cgi?id=54376
I was trying to run a program and it says that it can't run it
Program can't run
--
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=40302
Bug ID: 40302
Summary: I have been using UBUNTU 14.04 desktop and wine source
(1.8.1) .
Product: Wine
Version: 1.8.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: himsstory(a)gmail.com
Distribution: ---
Created attachment 53941
--> https://bugs.winehq.org/attachment.cgi?id=53941
Backtrace when I try to open Amazon workspaces using wine.
I got the following error that flex and bison packages are not found. I
installed those packages. Then libxml packages, libxslt packages were also not
installed. however i was able to install wine .
I extracted the .msi installer using msiexexc /i option with wine.The
installation is successful. The login page opens up. When i enter my
credentials, it shows loading and then i get the error. I have tried doing the
same on 64 bit ubuntu 14.0.4 but still the same result.
--
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=40621
Bug ID: 40621
Summary: Al cerrar el zara radio muestra un error de
incompatibilidad.
Product: Wine
Version: 1.9.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: danielmascaro(a)outlook.com
Distribution: ---
Created attachment 54480
--> https://bugs.winehq.org/attachment.cgi?id=54480
Al cerrar el zara radio muestra un error de incompatibilidad.
Al cerrar el zara radio muestra un error de incompatibilidad.
--
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=29434
Bug #: 29434
Summary: Picasa 3.9 fails to authenticate with Google
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mihai(a)mihaic.ro
Classification: Unclassified
Created attachment 38101
--> http://bugs.winehq.org/attachment.cgi?id=38101
Output from running Picasa 3.9 in a terminal.
Picasa 3.9 fails to authenticate with Google. Picasa 3.8 works with the same
setup (Ubuntu 11.10).
The problem is known to Google:
http://www.google.com/support/forum/p/Picasa/thread?tid=1c3f770cc876aeb9&fi…
"[...] we've switched to using OAuth in Picasa 3.9 and our implementation isn't
supported on WINE."
I'm attaching the output I get when running in a terminal (wine Picasa3.exe).
When I try to connect to Google, the following line is output:
"err:ntdll:RtlpWaitForCriticalSection section 0xe10440 "?" wait timed out in
thread 0033, blocked by 0009, retrying (60 sec)"
--
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=44838
Bug ID: 44838
Summary: Diablo 2 graphics became glitchy starting with Wine
Version 3.2
Product: Wine
Version: 3.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wodencafe(a)gmail.com
Distribution: ---
Starting with Wine 3.2 and on, Diablo 2 is rendering very strangely and badly,
lots of flickering and black squares.
It's hard to describe so I have attached a video comparison with 3.1, which
works fine.
Tested with 3.2, 3.3, and 3.4, and all have the flicker / black squares
problems. 3.1 and prior are fine.
This is with no wine modifications beyond installing Diablo 2 & Lord of
Destruction.
Please see the video for example of problem, and comparison of when it was
working with 3.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.
https://bugs.winehq.org/show_bug.cgi?id=44125
Bug ID: 44125
Summary: x11drv: Can't allocate handle for display fd x11drv:
Can't store handle for display fd
Product: Wine
Version: 2.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: noel.kuntze+bugs.winehq(a)thermi.consulting
Distribution: ---
The following errors are printed by wine, additionally with the game crashing
or exiting game sessions is happening with wine 2.22 while playing World of
Warships:
x11drv: Can't allocate handle for display fd
x11drv: Can't store handle for display fd
Possibly a regression re 39268
--
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=36896
Bug ID: 36896
Summary: Audiosurf Quest 3D error
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: levanchelidze(a)gmail.com
Created attachment 49003
--> http://bugs.winehq.org/attachment.cgi?id=49003
steam terminal output
I installed Steam on fresh wineprefix and then downloaded Audiosurf and started
it I got an error here is a screenshot of it
http://i.imgur.com/RTXFHoD.png
and terminal outputs
--
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=35997
Bug ID: 35997
Summary: Polar Websync 2.8.1 not recognizing USB device ( RC3
GPS )
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: evorster(a)gmail.com
Hi there.
Thanks for fixing bug 35284 above.
I installed Websync on my Arch Linux box, and it installed beautifully.
Unfortunately, Websync does not seem to recognize my RC3.
I launch the Websync app, and whether I click on "Training Computer" or
"Synchronize" the app never gets past the "Connect" bit, and the dot next to it
stays red, instead of turning green like it does in Windows boxes when I have
the device plugged in.
I am happy to follow instructions on getting more information for you, and also
building applications from source code and applying patches in testing, as I
used to use a sources-based distrobution before.
Kind regards,
Evert Vorster
--
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=46109
Bug ID: 46109
Summary: Joxi crash on start
Product: Wine
Version: 3.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sergey(a)ortoped.org.ru
Distribution: ---
Created attachment 62742
--> https://bugs.winehq.org/attachment.cgi?id=62742
bugtrace
I have a new laptop with Fedora 28. I have installed wine (sudo yum install
wine) and downloaded Joxi from http://dl.joxi.ru/windows/direct/Joxi.exe . It
have installed succesfully but crashes on start. See bugtrace.txt
--
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=45516
Bug ID: 45516
Summary: trying to install vcrun2010 sp1 x86
Product: Wine
Version: 2.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 3anuj.behl.75(a)rj-11.cf
Distribution: ---
Created attachment 61901
--> https://bugs.winehq.org/attachment.cgi?id=61901
a program differed from the rest (sqmapi)
a program differed from the rest (sqmapi)
--
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=33019
Bug #: 33019
Summary: PDH does not support the 'Object Index' when creating
strings
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: pdh
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
PDH allows for performance counters to be specified to address a particular
object. For example, on a machine with multiple processors one uses the
index-specific string:
\Processor(_Total#0)\% Processor Time
rather than the generic string:
\Processor(_Total)\% Processor Time
Silverlight uses these index-specific strings to construct the processor time
string, which poses a problem since this is not currently implemented.
--
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=33018
Bug #: 33018
Summary: PDH does not support the 'Processor' object string
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: pdh
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
Calling PdhLookupPerfNameByIndex with the index 238 should return the string
'Processor', this is used by Silverlight to construct the string:
\Processor(_Total#0)\% Processor Time
to obtain the processor usage.
--
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=45002
Bug ID: 45002
Summary: Right click on Android x86 and physical mouse is not
working as genuine right mouse click
Product: Wine
Version: 3.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ruthan(a)email.cz
Distribution: ---
Hello,
physical mouse on Androidx86 wine is not working well, left click is somehow
mixed with right click and right click not working as it should.. I dunno, if
it could be fixed on Wine side, or some Androidx86 fixes are needed, overall
user experience sucks.
Tested on Steam client and games like Unreal Tournament 99 demo, which is
working at least in Safe mode and with software renderer.
--
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=38329
Bug ID: 38329
Summary: 64-bit Double Commander hangs
Product: Wine
Version: 1.7.38
Hardware: x86-64
URL: https://sourceforge.net/projects/doublecmd/files/DC%20
for%20Windows%2064%20bit/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jhansonxi(a)gmail.com
Distribution: ---
The 64-bit version of open-source file manager Double Commander hangs at
execution, loading the CPU at 100%. The 32-bit version is not affected.
Occurs with 0.5.11, 0.6.0, and 0.6.1 betas.
Xubuntu 14.04.2 x86_64
--
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=39841
Bug ID: 39841
Summary: Double Commander context menus missing most entries
Product: Wine
Version: 1.8
Hardware: x86
URL: http://sourceforge.net/p/doublecmd/wiki/Download/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: jhansonxi(a)gmail.com
Distribution: Ubuntu
Double Commander 0.6.6 beta build 6327M
32-bit (64-bit doesn't function as per bug #38329)
Right-clicking in an empty space within the directory view in WinXP shows
"Refresh, Sort by, Paste, New Properties". In Wine it triggers an error dialog
stating "Error: Invalid parameter".
Right clicking on a a text file in WinXP shows "Open, Print, Edit, Open with,
Actions, Send to, Cut, Copy, Create shortcut, Delete, Rename, Properties". In
Wine it only shows "Actions>View, Edit". Wine reports:
fixme:shell:ContextMenu_HandleMenuMsg2 (0x2dd8ed0)->(0x117 0x602c6 0x0
0x1b7ead4): 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=43577
Bug ID: 43577
Summary: unit test: DBGrid inplace editor dropdown does not
work and worked on version 2.0.2
Product: Wine
Version: 2.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Brad.Wine1(a)amaitis.com
Distribution: ---
version 2.0.2 works
winehq-devel
wine --version
wine-2.13
and
wine-2.14
If you click the dropdown in the Show column on the grid stable 2.0.2 works and
the 2.13 and 2.14 dev version does not let you select from the list shown to
change the value of the field.
http://www.ateksol.com/dev/unittest/GridDropDown.exe
sha1sum
cea42ec431f985a802203be10e4cae6abe6afde5 GridDropDown.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=43608
Bug ID: 43608
Summary: Altium Designer: Drop down menu entry not clickable
since Wine 2.13
Product: Wine
Version: 2.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: afb(a)mailbox.org
Distribution: ---
Since upgrade to Wine 2.13 and further, Altium Designer 17 returns the
following error when selecting an entry in any drop down menu:
Cannot focus a disabled or invisible window at 3008640F.
AdvSch.dll, Base Address: 2FE60000.
The drop down menu then resets. At this time, with parameter warn-all, Wine
2.13 outputs the following debug message:
fixme:explorerframe:taskbar_list_AddTab iface 0x10680510, hwnd 0x1053c stub!
fixme:explorerframe:taskbar_list_ActivateTab iface 0x10680510, hwnd 0x1053c
stub!
When selecting any menu entry with the return key instead, Altium Designer
works as expected.
The last Wine version showing expected behaviour is 2.12. OS is 4.12.8-2-ARCH.
--
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=43630
Bug ID: 43630
Summary: Altium Designer Installer - Richedit control shows rtf
code instead of text
Product: Wine
Version: 2.15
Hardware: x86
URL: https://s3.amazonaws.com/altium-release-manager/Altium
_Designer_17/AltiumDesignerSetup_17_1_6.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Just download the attached installer, click 'Next' and change the language to
German. It doesn't show German text, but richedit coded text.
winetricks "riched20" works as workaround.
Side note: Currently hard to test, since it's blocked by Bug 43608/Bug 43577.
But it's still existent in wine-2.15 if you account for the regression.
--
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=44178
Bug ID: 44178
Summary: Diablo 2 locks up when connecting to battle.net
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: bruce(a)biz.winehq.zuhause.org
Distribution: ---
Created attachment 59942
--> https://bugs.winehq.org/attachment.cgi?id=59942
output from wine command
This started occurring a couple of days ago, running on a wine 1.x version. I
upgraded to Wine 3.0-rc1 and here is the log from the terminal window. Note
that the last few lines, starting with
0043:fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! take
place minutes after it locks up, after I click on the close window button.
--
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=15315
Summary: Ace Online (aka Space Cowboy/Flysis/Air Rivals) does not
load past launcher with WINE
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: littlegator(a)gmail.com
I'm somewhat new to Linux, so if anyone offers any fixes, I may not be sure how
to do it. Please inform me of the exact procedure of the fix (or anything that
may advance the situation) and I will gladly do what you ask.
Now, on to the problem. I load up Ace Online with WINE 1.0-rc3 and it brings me
to the launcher. I type in my login details, select my resolution (which is
1024 x 768), uncheck the "windowed" check box (which appears to have no effect
on the output), and wait. The game goes full screen and is white for a few
seconds. It switches to black, then, after about 10 or 15 seconds, a white
square appears in the middle of the screen. It disappear within a few frames of
appearing, and I'm stuck here. Same thing happens when windowed, it just isn't
full screen. During this process, it seems to be outputting every single
mission log in the game to the debug window. The output file is extremely long.
Now, my setup:
I'm running WINE 1.0-rc3 with DirectX9.0 installed using WineTricks. I'm
running a 1024x768 virtual desktop with no window decorations and window
manager can not control the windows.
My PC:
Intel Pentium 4 1.6GHz
512MB RAM (not sure on what type >_>)
ATI Radeon 9700 pro 128MB onboard RAM using latest Catalyst drivers
running 3.5.6-9.fc7 Fedora release: 2.6.21-1.3194.fc7
While I await a response, I'm going to attempt updating Fedora since it's
apparently an older version. I've attached the a couple output files and a
dxdiag if it may be useful.
--
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=27716
Summary: Dragon Nest (Chinese): crashes before login screen
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eric.gralco(a)gmail.com
Created an attachment (id=35467)
--> (http://bugs.winehq.org/attachment.cgi?id=35467)
Fixmes that are thrown during the crash
The game must be started from dnlauncher.exe. After the loading screen the game
goes to the animation before the login screen where it crashes. For the record
the game also lags at this point on Windows but does not crash.
--
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=45254
Bug ID: 45254
Summary: Buffer overflow, X file children MAX_CHILDREN limit
too small, crashes BIONICLE: The Legend of Mata Nui
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dxof
Assignee: wine-bugs(a)winehq.org
Reporter: legojrmastermodelbuilder(a)gmail.com
Distribution: ---
In dlls/d3dxof/d3dxof_private.h MAX_CHILDREN is defined as 200, which is too
small a buffer for some existing DirectX model .X files:
https://github.com/wine-mirror/wine/blob/4102d8a0dc1b02d37d834f17d1925f3b0d…
In dlls/d3dxof/parsing.c there is actually a warning if that number is
exceeded, but the bounds checking happens after the buffer would be overflown,
so it may read the wrong value or simply crash instead:
https://github.com/wine-mirror/wine/blob/99a5afc09b1e8928a2b3270ce67784083d…
Native Windows does not appear to impose a hard limit, or if there is one it is
larger than 0xFFFF (the highest size I tested).
This limitation impacts at least one Windows application, namely the game
BIONICLE: The Legend of Mata Nui.
This would impact Wine on all platforms.
GitHub issue for reference:
https://github.com/TheLegendOfMataNui/game-issues/issues/110
--
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=12694
Summary: Air Rival Crashes after login
Product: Wine
Version: 0.9.59.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=11224&iTestingId=22275
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mifuyne(a)gmail.com
Created an attachment (id=12349)
--> (http://bugs.winehq.org/attachment.cgi?id=12349)
Log of Air Rival from Launch to Crash
The game crashes without going into the game itself. Been tested on different
versions of Windows (slightly different error on some version). The following
address leads to the log, from launcher to the crash point. It's also attached
to this report.
http://pastebin.org/30959
WINE was set to Emulate a virtual desktop at 1024 x 768 (thus avoiding the
resolution problem mentioned here:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=11224&iTesting…
--
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=44192
Bug ID: 44192
Summary: Dragon Age Origins Awakening installer deadlock when
extracting files
Product: Wine
Version: 2.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lorenzofer(a)live.it
Distribution: ---
Created attachment 59959
--> https://bugs.winehq.org/attachment.cgi?id=59959
Wine log
Trying to install Dragon Age Awakening in a clean wineprefix (where there is
already installed Origins) result in a deadlock after ending file extraction.
The installer thus hang completly and must be killed.
Awakenings is composed of two compressed files, one for "core" files, and one
for "addons" file. It's completly random on which file it hangs, sometimes on
the first file sometimes on the second, but is hanging always after it
extracted the last file of the archive (the last line of the installer log is
Extract: packages or Extract : addons with the extracting file percentual
progression, blocking at 99.4% or 100% )
In the log I'm getting:
err:ntdll:RtlpWaitForCriticalSection section 0x7bd1cbc0
"../../../dlls/ntdll/loader.c: loader_section" wait timed out in thread 0009,
bl
ocked by 002d, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7bd1cbc0
"../../../dlls/ntdll/loader.c: loader_section" wait timed out in thread 0032,
bl
ocked by 002d, retrying (60 sec)
err:ntdll:RtlLeaveCriticalSection section 0x117b0 is not acquired
multiple times.
The log is from Wine stagin 2.21, but I tested also with the last wine 3.0rc2
and doesn't change of a comma.
(While searching for similar bugs I found this Bug 22091, but is marked as
fixed, and mention a crash I'm not having)
--
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=35116
Bug ID: 35116
Summary: War Rock crash after Updater (startup)
Product: Wine
Version: 1.4.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: juliantheel(a)gmail.com
Classification: Unclassified
Created attachment 46845
--> http://bugs.winehq.org/attachment.cgi?id=46845
Fail
After starting this game (Updater runs) this errror appears.
--
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=43564
Bug ID: 43564
Summary: Prey Demo texture/lighting issues
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: plata(a)mailbox.org
Distribution: ---
Almost everything is really dark (looks like a room without light). However,
some things like the computer screen seem to have the correct
textures/lighting.
--
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=34625
Bug #: 34625
Summary: Drakan demo doesn't detect that the graphics card
supports antialiasing
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
Created attachment 46141
--> http://bugs.winehq.org/attachment.cgi?id=46141
Drakan Log
The antialiasing option is grayed out in a preferences window that shows up
when you start the game as well as in in-game settings.
Tested with:
Windows Vista (without Wine), GeForce 9600M GS--the program works fine here
Ubuntu 13.04, GeForce 9600M GS (NVIDIA driver 313)
Mac OS X 10.7.5, ATI HD 2600 Pro, Mac Driver/X11
--
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=24893
Summary: Explorer++ is missing most right-click options for
files/folders
Product: Wine
Version: 1.3.5
Platform: x86-64
URL: http://www.explorerplusplus.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31524)
--> (http://bugs.winehq.org/attachment.cgi?id=31524)
Log from right-clicking a folder, then a file
Expected behavior:
Right-clicking on a file should open the same menu that would be seen in
Windows Explorer (or Winefile as the case may be), while right-clicking a
folder should do the same, but with an added "open in new tab" option.
Actual behavior:
Right-clicking on a file produces a menu with a single option, which may be
blank or random garbage. It doesn't appear to do anything either way.
Right-clicking on a folder yields a menu with only the option "open in new
tab."
--
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=12457
Summary: SharpDevelop 2.2 crashes with NotImplementedException at
IWebBrowser2.get_LocationName()
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.icsharpcode.net/OpenSource/SD/Download/#Sharp
Develop22
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://lists.ximian.com/pipermail/mono-devel-list/2008-March/027227.html
was asking how to install SharpDevelop 2 under Wine, so I
gave it a try. "winetricks dotnet20" was enough to get it
to install and start, but after it put up the GUI, it
aborted with
fixme:shdocvw:WebBrowser_QueryInterface
(0x1af830)->({00000144-0000-0000-c000-000000000046} 0x33e800) interface not
supported
...
FATAL- System.NotImplementedException: The method or operation is not
implemented.
at System.Windows.Forms.UnsafeNativeMethods.IWebBrowser2.get_LocationName()
at System.Windows.Forms.WebBrowser.get_DocumentTitle()
--
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=29903
Bug #: 29903
Summary: Microsoft Visual Studio 2005: enumeration of processes
fails due to wtsapi32.WTSEnumerateProcessesW() being a
stub ( "attach to process" menu))
Product: Wine
Version: 1.4-rc3
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,
clicking "attach to process" menu item with default "local transport" leads to
an error message stating "Operation not supported. Unknown error: 0x8007000e".
The process list (listview) is empty due to WTSEnumerateProcessesW() API being
a stub.
Prerequisite: 'winetricks -q dotnet20 mfc42'
--- snip ---
...
0024:Call
wtsapi32.WTSEnumerateProcessesW(00000000,00000000,00000001,0032e828,0032e824)
ret=54bc508e
0024:fixme:wtsapi:WTSEnumerateProcessesW Stub (nil) 0x00000000 0x00000001
0x32e828 0x32e824
0024:Ret wtsapi32.WTSEnumerateProcessesW() retval=00000001 ret=54bc508e
0024:Call KERNEL32.GetProcAddress(7d910000,54cb3b3c "WTSFreeMemory")
ret=54bb97d2
0024:Ret KERNEL32.GetProcAddress() retval=7d914fc8 ret=54bb97d2
0024:Call wtsapi32.WTSFreeMemory(00000000) ret=54bc51b9
0024:fixme:wtsapi:WTSFreeMemory Stub (nil)
0024:Ret wtsapi32.WTSFreeMemory() retval=0000002b ret=54bc51b9
...
0024:Call oleaut32.SysAllocString(011722a8 L"Unable to connect to the Microsoft
Visual Studio Remote Debugging Monitor named 'nexus4'. Operation not
supported. Unknown error: 0x8007000e.") ret=54ba4f0c
...
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/windows/desktop/aa383831.aspx
Stub source:
http://source.winehq.org/git/wine.git/blob/fddbf3b99d6582c50ede10dfddd8d438…
--- snip ---
--- snip ---
105 BOOL WINAPI WTSEnumerateProcessesW(HANDLE hServer, DWORD Reserved, DWORD
Version,
106 PWTS_PROCESS_INFOW* ppProcessInfo, DWORD* pCount)
107 {
108 FIXME("Stub %p 0x%08x 0x%08x %p %p\n", hServer, Reserved, Version,
109 ppProcessInfo, pCount);
110
111 if (!ppProcessInfo || !pCount) return FALSE;
112
113 *pCount = 0;
114 *ppProcessInfo = NULL;
115
116 return TRUE;
117 }
--- snip ---
$ wine --version
wine-1.4-rc3-65-g98f0be8
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=19756
Summary: TaskCoach: Cannot add new task with a due date
Product: Wine
Version: 1.1.27
Platform: PC
URL: http://www.taskcoach.org/download.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jekwas(a)gmail.com
Created an attachment (id=23126)
--> (http://bugs.winehq.org/attachment.cgi?id=23126)
taskcoach.exe.log
I ran across this while testing for 8322. Task Coach is unable to add a new
task if a Due Date is specified.
To reproduce, click "New task" in the main window. Go to the Dates tab and add
a due date. Press OK, and nothing will happen. When you close Task Coach, it
will alert you of logged errors.
I have attached such a log. (Wine doesn't output with any problems when trying
to add a task)
--
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=12076
Summary: Database app refused to install unless
system32/drivers/etc/{services,host} exist
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user's informix-based app refused to install until
the empty files c:/windows/system32/drivers/etc/{services,host}
were created, see
http://winehq.org/pipermail/wine-users/2008-March/030256.html
I looked around a bit for other system32/drivers/etc files.
http://support.microsoft.com/kb/130024 describes hosts, services, and protocols
http://support.microsoft.com/kb/105997 describes lmhosts
It looks like some apps find that directory by looking at
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\DataBasePath
and MSN Messenger 7.5 f*cks up by changing that variable's type, see
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6343068
Getting this all right would be a lot of work. Just creating
two empty files might be reasonable, though, since it
allows the user's app to 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.
https://bugs.winehq.org/show_bug.cgi?id=35539
Bug ID: 35539
Summary: Proteus 8 demo fails to install
Product: Wine
Version: 1.7.11
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Classification: Unclassified
Hello folks,
split off from bug 34457
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+msi wine ./prodemo.exe >>log.txt 2>&1
...
0037:trace:msi:ACTION_PerformUIAction Performing action
(L"WriteEnvironmentStrings")
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 100 L"Action 13:24:18:
WriteEnvironmentStrings. Updating environment strings"
...
0037:trace:msi:MSI_DatabaseOpenViewW L"SELECT * FROM `Environment`" 0x33f7e8
...
0037:trace:msi:ITERATE_WriteEnvironmentString name L"!-*LXKSERVER" value (null)
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 200 L"Name: LXKSERVER,
Value: , Action 0"
...
0037:trace:msi:ITERATE_WriteEnvironmentString name L"=-*LXKSERVER" value
L"[KEY_SERVER]"
...
0037:trace:msi:MSI_FormatRecordW L"[KEY_SERVER]"
...
0037:trace:msi:msi_get_property property L"KEY_SERVER" not found
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 200 L"Name: LXKSERVER,
Value: , Action 0"
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 10 L"Action ended
13:24:18: WriteEnvironmentStrings. Return value 14."
...
0037:err:msi:ITERATE_Actions Execution halted, action
L"WriteEnvironmentStrings" returned 14
--- snip ---
"Environment" msi table dump with ORCA:
--- snip ---
Environment Name Value Component_
s72 l255 L255 s72
LXKSERVER !-*LXKSERVER APPFRAME.DLL
LXKSERVER_1 =-*LXKSERVER [KEY_SERVER] APPFRAME.DLL
--- snip ---
The first one has no value -> skipped (ok).
The second one has a value and is getting deformatted ... unfortunately
'KEY_SERVER' property is not set at this point, resulting in failure.
I found only one occurrence of this property 'KEY_SERVER' in msi tables:
"Control" msi table:
--- snip ---
KeyServerDlg Edit_1 Edit 101 112 125 18 3 KEY_SERVER
{260} Bitmap
--- snip ---
The unattended install using explicit command line property works, see:
http://www.softnual.com/html/pds/network-installation.htm
--- quote ---
Where a server license and dongle are installed the KEY_SERVER property can be
set on the command line to point to the licence key server. If set this will
set the environment variable, if not set the variable will be cleared.
--- quote ---
If I pass the property via command line it finishes successfully:
--- snip ---
$ wine msiexec -i setup_demo8.1.17358.0.msi KEY_SERVER=test
...
$ fixme:wshom:WshShell3_RegWrite
(L"HKLM\\SYSTEM\\CurrentControlSet\\Control\\Session
Manager\\Environment\\LXKSERVER" {VT_BSTR: L"test"} {vt 10}): stub
--- snip ---
For UI install, the 'KeyServerDlg' is referenced from 'LicenseKeyTypeDlg' which
is referenced from 'LicenseAgreementDlg':
--- snip ---
LicenseAgreementDlg Back NewDialog WelcomeDlg AI_INSTALL AND
LicenseAgreementDlg_Cond 1
LicenseAgreementDlg Next NewDialog SetupTypeDlg AI_INSTALL AND
LicenseAgreementDlg_Cond 3
LicenseAgreementDlg Next NewDialog LicenseKeyTypeDlgAI_INSTALL
AND LicenseAgreementDlg_Cond AND LicenseKeyTypeDlg_Cond 4
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] 1 Family <>
"Demonstration" 2
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] {} 1 1
LicenseAgreementDlg Cancel SpawnDialog CancelDlg 1 100
LicenseAgreementDlg PrintButton DoAction AI_PrintRtf 1 2
LicenseAgreementDlg PrintButton [AI_PRINT_RTF]
LicenseAgreementDlg#AgreementText 1 1
--- snip ---
'SetupTypeDlg' is selected for 'next' button instead of 'LicenseKeyTypeDlg':
--- snip ---
0037:trace:msi:msi_set_property 0x1437c0 L"LicenseAgreementDlg_Cond" L"1" -1
...
0037:trace:msi:MSI_EvaluateConditionW 1 <- L"AI_INSTALL AND
LicenseAgreementDlg_Cond"
...
0037:trace:msi:msi_dialog_send_event Sending control event L"NewDialog"
L"LicenseAgreementDlg"
...
0037:trace:msi:MSI_EvaluateConditionW L"AI_INSTALL AND LicenseAgreementDlg_Cond
AND LicenseKeyTypeDlg_Cond"
...
0037:trace:msi:msi_get_property returning L"1" for property L"AI_INSTALL"
...
0037:trace:msi:msi_get_property returning L"1" for property
L"LicenseAgreementDlg_Cond"
...
0037:trace:msi:msi_get_property property L"LicenseKeyTypeDlg_Cond" not found
...
0037:trace:msi:MSI_EvaluateConditionW 0 <- L"AI_INSTALL AND
LicenseAgreementDlg_Cond AND LicenseKeyTypeDlg_Cond"
...
0037:trace:msi:MSI_EvaluateConditionW 1 <- L"AI_INSTALL AND
LicenseAgreementDlg_Cond"
0037:trace:msi:msi_dialog_send_event Sending control event L"NewDialog"
L"SetupTypeDlg"
--- snip ---
'LicenseKeyTypeDlg_Cond' is tied to control 'Event':
--- snip ---
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] 1 Family <>
"Demonstration" 2
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] {} 1 1
--- snip ---
The event condition:
--- snip ---
0037:trace:msi:MSI_DatabaseOpenViewW L"SELECT * FROM ControlEvent WHERE
`Dialog_` = 'LicenseAgreementDlg' AND `Control_` = 'Next' ORDER BY `Ordering`"
0x33f240
...
0037:trace:msi:MSI_EvaluateConditionW L"1"
...
0037:trace:msi:COND_GetString Got identifier L"1"
...
0037:trace:msi:MSI_EvaluateConditionW 1 <- L"1"
...
0037:trace:msi:msi_set_property 0x1437c0 L"LicenseKeyTypeDlg_Cond" (null) -1
...
0037:trace:msi:msi_get_property property L"LicenseKeyTypeDlg_Cond" not found
0037:trace:msi:MSI_DatabaseOpenViewW L"DELETE FROM `_Property` WHERE
`_Property` = 'LicenseKeyTypeDlg_Cond'" 0x33f11c
...
0037:trace:msi:MSI_EvaluateConditionW L"Family <> \"Demonstration\""
...
0037:trace:msi:COND_GetString Got identifier L"Family"
...
0037:trace:msi:msi_get_property returning (null) for property L"Family"
...
0037:trace:msi:msi_get_property returning L"Demonstration" for property
L"Family"
...
0037:trace:msi:COND_GetLiteral Got literal L"Demonstration"
...
0037:trace:msi:MSI_EvaluateConditionW 0 <- L"Family <> \"Demonstration\""
...
--- snip ---
'Family' property is hard coded by default to 'Demonstration' value.
Makes sense for demo app/installer.
Summing it up: at first glance everything looks ok.
Maybe it's another MSI client vs. server issue.
$ sha1sum prodemo.exe
e3409adbc80bd73a36f82890da2b7d16be2fbf51 prodemo.exe
$ du -sh prodemo.exe
166M prodemo.exe
$ wine --version
wine-1.7.11-306-g8f289c8
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=36010
Bug ID: 36010
Summary: Changing font resolution on winecfg changes default
main font to Tahoma
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jbopen(a)gmail.com
Changing the value of font resolution under "Desktop" (winecfg) the system.reg
changes the value "MS Shell Dlg" to the original "Tahoma".
--
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=32749
Bug #: 32749
Summary: Implement atl100.dll.AtlAxDialogBoxW to show error
dialogs (Visual Studio 2010 (10.0) Express Edition)
Product: Wine
Version: 1.5.21
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
continuation of bug 32564 (Visual Studio 2010 (10.0) Express Edition needs
atl100.dll.AtlAxDialogBoxW).
Although it's stubbed for now it might be useful to load and show the dialog
resource.
--- snip ---
0009:fixme:atl:AtlAxDialogBoxW (0x401f0000 #00cc 0x2008a 0x401b589f 0)
--- snip ---
The user doesn't know what happened in this case.
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=44813
Bug ID: 44813
Summary: Some applications fail when calling ntdll.NtReadFile
on a directory (expect STATUS_INVALID_DEVICE_REQUEST)
Product: Wine
Version: 3.4
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,
to track
https://github.com/wine-staging/wine-staging/tree/master/patches/ntdll-Stat…
Unfortunately there is little information/details, I just found this:
https://wine-staging.com/news/2015-10-04-release-1.7.52.html
--- quote ---
Return STATUS_INVALID_DEVICE_REQUEST when trying to call NtReadFile on
directory (Wine Staging Bug #571)
--- quote ---
Sadly no applications are mentioned.
Some info here:
https://stackoverflow.com/questions/42662363/createfile-on-directory-in-ntf…
--- quote ---
file system drivers (ntfs also) always return error code on IRP_MJ_READ request
for directory file. usually STATUS_INVALID_DEVICE_REQUEST or
STATUS_INVALID_PARAMETER
--- quote ---
https://www.osronline.com/showthread.cfm?link=169533 ("ZwQueryDirectoryFile
failed with error STATUS_INVALID_DEVICE_REQUEST")
https://msdn.microsoft.com/en-us/library/cc232128.aspx ("[MS-FSCC]: File System
Control Codes")
$ wine --version
wine-3.4-
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=33118
Bug #: 33118
Summary: Adding bin.base64 attribute causes duplicate datatype
attribute
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Classification: Unclassified
The following psedocode is causing duplicate xmlns to appear on a node.
node->Create Attribute (_T("xmlns:dt"),
_T("urn:schemas-microsoft-com:datatypes"));
node->Put Data Type(_T("bin.base64"));
node->Put Node TypedValue("DATA");
Do you get a node that looks like the following.
<UML:TaggedValue xmlns:dt="urn:schemas-microsoft-com:datatypes"
xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="bin.base64" >...
--
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=16666
Summary: wine segfaults on launch
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: critical
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=18290)
--> (http://bugs.winehq.org/attachment.cgi?id=18290)
core dump
Now for the biggest bug :-)
Wine segfaults on launch of any program. Even 'wine --version' crashes.
I've got this patch in place (from openbsd's port):
diff --git a/loader/pthread.c b/loader/pthread.c
index 4c0c892..e7f6479 100644
--- a/loader/pthread.c
+++ b/loader/pthread.c
@@ -96,6 +96,12 @@ static void init_thread( struct wine_pthread_thread_info
*info )
/* if base is too large assume it's the top of the stack instead */
if ((char *)info->stack_base > &dummy)
info->stack_base = (char *)info->stack_base - info->stack_size;
+#elif defined(__OpenBSD__)
+ stack_t stack;
+ if (pthread_stackseg_np(pthread_self(), &stack) != 0)
+ abort ();
+ info->stack_base = (char *)stack.ss_sp - stack.ss_size;
+ info->stack_size = stack.ss_size;
#else
/* assume that the stack allocation is page aligned */
char dummy;
@@ -163,6 +169,8 @@ static void init_current_teb( struct
wine_pthread_thread_info *info )
info->pid = getpid();
#ifdef __sun
info->tid = pthread_self(); /* this should return the lwp id on solaris
*/
+#elif defined(__OpenBSD__)
+ info->tid = pthread_self();
#elif defined(__APPLE__)
info->tid = mach_thread_self();
#elif defined(__FreeBSD__)
Though, it still segfaults without it.
wine-pthread.core 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=42269
Bug ID: 42269
Summary: There is no fonts in the menu S.T.A.L.K.E.R.: Shadow
of Chernobyl
Product: Wine
Version: 2.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: negry.mischa(a)yandex.ru
Distribution: ---
Created attachment 56970
--> https://bugs.winehq.org/attachment.cgi?id=56970
A screenshot of the problem
When you start the game there is no fonts in the menu, same problem in Tropico
5, but in STALKER are the wine versions 1.9.17-1.9.23. And the workspace of
STALKER, as seen in the screenshot is limited
--
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=30600
Bug #: 30600
Summary: Emergency 3 crash with page fault on read access to
0x00000000 in 32-bit code (0x100ac010)
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linuxcobra(a)gmx.de
Classification: Unclassified
Created attachment 40041
--> http://bugs.winehq.org/attachment.cgi?id=40041
Backtrace-output
when i install this Game under wine, the install works, but when i will start
the game, will not work.
via original Windows XP / ME ( both tested) : no 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=42137
Bug ID: 42137
Summary: DirectInput needs to join both Xbox shoulder triggers
into a single axis (aka half-axis problem)
Product: Wine
Version: 1.6.1
Hardware: x86
OS: Linux
Status: NEW
Keywords: hardware
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
CC: aric(a)codeweavers.com
Distribution: ---
When MS introduced the Xbox controller into dinput it had the idea of joining
both Xbox controller shoulder triggers into a single axis. So the left trigger
ranges to the negative side while the right trigger to the positive side of the
same axis.
Wine currently exposes the triggers are separate axes Z and rZ, this affects
some games negatively because the not-pressed default values for the triggers
is the lowest possible, for example if the axis ranges from -100 to +100 Wine
exposes -100 to the application. The effect is that the application thinks the
axis is always pressed and weird things happen, eg auto selecting Z/rZ as every
button when configuring a joystick or wrongly selecting Z/rZ as rX/rY making
FPS players always look up or down.
I don't know if this happens only for Xbox controllers but I believe so. I'll
have the chance to test with a real PS3 controller soon.
If that is MS only, we need to find a way to distinguish the joysticks
(VID/PID?) and merge the axes to mimic MS behavior.
At the same time and in opposite direction the XInput API does not employ this
hack, since XInput was made for Xbox only controllers it will properly report
the values for the axes separately.
--
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=41700
Bug ID: 41700
Summary: "Install Now" and "Customize installation" buttons are
invisible in Python 3.5 installer
Product: Wine
Version: 1.9.23
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
The "Install Now" and "Customize installation" buttons do not appear on either
the regular Python 3.5 installer or the Python 3.5 web installer, not even if
you hover the mouse over the buttons or press the tab key repeatedly. However,
the installation continues if you click where the button should be, and the tab
key appears to move focus onto and off of the buttons even though there is no
visual feedback.
Note that you must set the Windows version to Windows Vista or later in winecfg
or the installer will only show you an error message.
$ sha1sum python-3.5.2.exe
3873deb137833a724be8932e3ce659f93741c20b python-3.5.2.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.