https://bugs.winehq.org/show_bug.cgi?id=44014
Bug ID: 44014
Summary: Unhandled exception: page fault on execute access to
0x00209520 in 32-bit code (0x00209520).
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cadunn(a)vt2000.com
Distribution: ---
Created attachment 59676
--> https://bugs.winehq.org/attachment.cgi?id=59676
Unhandled exception
This occurred in Poker Stars running in Wine, Linux Mint 18.2.
--
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=35536
Bug ID: 35536
Summary: QQ International 2.1 can't type password
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Classification: Unclassified
0. download from http://proxy.imqq.com/QQintl2.11.exe
$ sha1sum QQintl2.11.exe
030df82390e7962177fcef66fc1a0fd1a3ba4090 QQintl2.11.exe
1. winetricks -q
riched20 for bug 29636
msctf for bug 34566
2. install it
3.wine QQ.exe
can't type password
--
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=46898
Bug ID: 46898
Summary: SIMATIC WinCC V15.1 Runtime installer fails in Windows
7 mode, reporting "The Microsoft security update
KB3033929 was not found on your system." ('ksecdd.sys'
missing with version resource)
Product: Wine
Version: 4.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
continuation of bug 46895
The installer aborts in Windows 7 mode (default WINEPREFIX WinVer):
--- snip ---
$ pwd
/home/focht/Downloads/SIMATIC WinCC Runtime Advanced V15.1
$ WINEDEBUG=+loaddll,+process,+seh,+wbemprox,+msi,+relay wine ./Start.exe
>>log.txt 2>&1
...
0054:fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000000,(nil),0x0001,0x00000000,0x124804c,0x1247f54):
stub
0054:err:eventlog:ReportEventW L"18:38:12|ERROR |CheckFileTerm()
|(01) File-Term. The term value
{Condition=([OS_VERSION_String]>=6.1 AND [OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x64')};{File};{[WINDOWSFOLDER]Sysnative\\drivers\\ksecdd.sys};{=>};{6.1.7601.18741};{TermMessage44}
is not satisfied."
0056:fixme:advapi:DeregisterEventSource (0xcafe4242) stub
--- snip ---
Condition can be found in installer .ini file (unicode):
--- snip ---
$ grep -Hrni -a -A2 K.B.3.0.3.3.9.2.9
InstData/Resources/SIA2.ini:190:;// KB3033929
InstData/Resources/SIA2.ini-191-{Condition=([OS_VERSION_String]>=6.1 AND
[OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x64')};{File};{[WINDOWSFOLDER]Sysnative\drivers\ksecdd.sys};{=>};{6.1.7601.18741};{TermMessage44}
InstData/Resources/SIA2.ini-192-{Condition=([OS_VERSION_String]>=6.1 AND
[OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x32')};{File};{[SystemFolder]drivers\ksecdd.sys};{=>};{6.1.7601.18741};{TermMessage44}
--
InstData/Resources/SIA2.ini:306:TermMessage44=Das Microsoft Sicherheitsupdate
KB3033929 oder ein entsprechender Nachfolger wurde auf ihrem System nicht
gefunden. Bitte installieren Sie das Update, bevor sie mit der Installation
fortfahren.
InstData/Resources/SIA2.ini-307-TermMessage45=Dummy
InstData/Resources/SIA2.ini-308-TermMessage46=Das Microsoft Update KB2919355
oder ein entsprechender Nachfolger wurde auf ihrem System nicht gefunden. Bitte
installieren Sie das Update, bevor sie mit der Installation fortfahren.
--
InstData/Resources/SIA2.ini:363:TermMessage44=The Microsoft security update
KB3033929 or a corresponding successor was not found on your system. Please
install the update before you continue with the installation.
--- snip ---
Link to Microsoft Security Advisory 3033929 (KB3033929):
https://docs.microsoft.com/en-us/security-updates/SecurityAdvisories/2015/3…
The driver is present with all Windows versions since Vista. Fix is included in
Windows 8+ by default.
Technical overview/tidbits:
https://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-p…
--- quote ---
Microsoft Kernel Security Support Provider Interface (KSECDD.SYS) is a FIPS
140-2 Level 1 compliant, general purpose, software-based, cryptographic module
residing at kernel mode level of Windows Vista operating system. KSECDD.SYS
(versions 6.0.6000.16386, 6.0.6000.16870, and 6.0.6000.21067) runs as a kernel
mode export driver, and provides cryptographic services, through their
documented interfaces, to Windows Vista kernel components. The KSECDD.SYS
encapsulates several different cryptographic algorithms in an easy-to-use
cryptographic module accessible via the Microsoft CNG (Cryptography, Next
Generation) API. It also supports several cryptographic algorithms accessible
via a Fips function table request irp (I/O request packet). Windows Vista
kernel mode components can use general-purpose FIPS 140-2 Level 1 compliant
cryptography in KSECDD.SYS.
--- quote ---
Two ways to fix/work around:
- switch WinVer for the installer to Windows 8 or later
- provide a placeholder 'ksecdd.sys' with version resource
For demonstration I've copied one of Wine's existing placeholder which has a
version resource 6.5.x as dummy.
NOTE: For 64-bit WINEPREFIX you need to call with 'wine64' to have it go in
proper folder.
--- snip ---
$ wine64 cmd.exe /c copy "c:\\windows\\system32\\amstream.dll"
"c:\\windows\\system32\\drivers\\ksecdd.sys"
--- snip ---
After that the installer proceeds further. Relevant part of application log:
--- snip ---
...
18:54:09|.. |CheckTerms::CheckTerms() |(01) TERM:
'{Condition=([OS_VERSION_String]>=6.1 AND [OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x64')};{File};{[WINDOWSFOLDER]Sysnative\drivers\ksecdd.sys};{=>};{6.1.7601.18741};{TermMessage44}'
18:54:09|.. |CheckTerms::CheckTerms() |(01)
Condition='([OS_VERSION_String]>=6.1 AND [OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x64')'
18:54:09|.. |CheckTerms::CheckTerms() |(01) Condition
is fulfilled. Checking term...
18:54:09|... |CheckTerms::CheckFileTerm() |(01) File-Term:
Exists: True; Path: C:\windows\Sysnative\drivers\ksecdd.sys
18:54:09|... |CheckTerms::CheckFileTerm() |(01) File-Term:
Required file version: 06.01.7601.18741_00.00.00.00
18:54:09|... |CheckTerms::CheckFileTerm() |(01) File-Term:
Current file version: 06.05.01.900_00.00.00.00
18:54:09|... |CheckTerms::CheckFileTerm() |(01) File-Term.
OK: {Condition=([OS_VERSION_String]>=6.1 AND [OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x64')};{File};{[WINDOWSFOLDER]Sysnative\drivers\ksecdd.sys};{=>};{6.1.7601.18741};{TermMessage44}
18:54:09|.. |CheckTerms::CheckTerms() |(01)
18:54:09|.. |CheckTerms::CheckTerms() |(01) TERM:
'{Condition=([OS_VERSION_String]>=6.1 AND [OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x32')};{File};{[SystemFolder]drivers\ksecdd.sys};{=>};{6.1.7601.18741};{TermMessage44}'
18:54:09|.. |CheckTerms::CheckTerms() |(01)
Condition='([OS_VERSION_String]>=6.1 AND [OS_VERSION_String]<6.2 AND
[OS_PLATFORM]='x32')'
18:54:09|.. |CheckTerms::CheckTerms() |(01) TERM will
be ignored. TERM's condition is not fulfilled.
--- snip ---
$ sha1sum SIMATIC_WinCC_Runtime_Advanced_V15_1.exe
db1f97bb648b62fa1c5d974d7f2bcb6b4a9fd786
SIMATIC_WinCC_Runtime_Advanced_V15_1.exe
$ du -sh SIMATIC_WinCC_Runtime_Advanced_V15_1.exe
1.3G SIMATIC_WinCC_Runtime_Advanced_V15_1.exe
$ wine --version
wine-4.4-188-gc988910cae
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44084
Bug ID: 44084
Summary: Simple WPF/.Net app doesn`t start
Product: Wine
Version: 2.22
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Created attachment 59801
--> https://bugs.winehq.org/attachment.cgi?id=59801
console output
The simple wpf app from the link doesn`t start in wine-2.22/Staging-2.21
It starts fine in wine-2.20
Unfortunately I don`t have time/fast computer to do a regression test
--
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=49976
Bug ID: 49976
Summary: FIFA 11 Demo fifaconfig crashes when pressing OK
button
Product: Wine
Version: 5.18
Hardware: x86-64
URL: http://static.cdn.ea.com/fifa/u/f/fifa11_pc_demo_EU.zi
p
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 68380
--> https://bugs.winehq.org/attachment.cgi?id=68380
mscoree
1. Launch configuration tool in ..\FIFA 11 Demo\Game\fifasetup\fifaconfig.exe
2. Make changes or just press OK button and it crashes.
wine-5.18-343-g412db778937
--
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=33130
Bug #: 33130
Summary: QuarkXPress v9.5 crashes after starting up
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mywine(a)schiermeier-software.de
Classification: Unclassified
Created attachment 43821
--> http://bugs.winehq.org/attachment.cgi?id=43821
QuarkXPress v9.5 console log during start
Trying to start QuarkXPressv9.5 crashes after it starts. It is showing the
splash screen and then it end its activity.
See console log.
--
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=44008
Bug ID: 44008
Summary: XNA Game Studio 4 installer crashes when cancelled
Product: Wine
Version: 2.21
Hardware: x86
URL: https://www.microsoft.com/en-us/download/confirmation.
aspx?id=23714
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 59670
--> https://bugs.winehq.org/attachment.cgi?id=59670
Error log
Steps to reproduce: Download the installer, click Cancel, click Ok in the
Messagebox, click Cancel. The program is now frozen and has to be killed with
ctrl-c.
--
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=42395
Bug ID: 42395
Summary: Saints Row The Third: graphical glitches
Product: Wine
Version: 2.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: tolikk91(a)yandex.ru
Distribution: ---
Created attachment 57203
--> https://bugs.winehq.org/attachment.cgi?id=57203
console_output
In the game a lot of flicker and graphical glitches
the last line in the console «err: d3d: wined3d_debug_callback 0xd3d3b98:
"GL_INVALID_OPERATION error generated Buffer is mapped..". » Endlessly repeated
--
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=44111
Bug ID: 44111
Summary: Simple WPF/.Net app has rendering issues
Product: Wine
Version: 2.22
Hardware: x86
URL: https://www.getautoma.com/files/download/WpfSimpleTest
App.exe/dir:examples
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Depends on: 44084
Distribution: ---
Created attachment 59833
--> https://bugs.winehq.org/attachment.cgi?id=59833
Graphical glitches
While investigating bug 44084 I found that the test program sometimes bugs out
and renders mostly garbage. It doesn't happen all the time, but most of the
time when you click its drop down list.
You need a 32bit WINEPREFIX and "winetricks -q dotnet40" for the program to
work. Just click the dropdown list, you might need to restart and try again if
the issue doesn't appear.
Also happens with staging-2.21, with or without CSMT.
--
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=37439
Bug ID: 37439
Summary: saint row the third dont show correctly characters
rendering
Product: Wine
Version: 1.7.28
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mrdeathjr28(a)yahoo.es
CC: mrdeathjr28(a)yahoo.es
Distribution: Mint
Created attachment 49808
--> https://bugs.winehq.org/attachment.cgi?id=49808
video about error (see in gameplay only)
saint row thethird dont show correctly characters rendering
--
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=45121
Bug ID: 45121
Summary: Steam uses high CPU while idle
Product: Wine
Version: 3.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: myjunkmail311006(a)gmail.com
Distribution: ---
Reported to Steam Support:
Recent Steam versions are using high CPU. This is with CPU frequencies at
minimum, which is necessary to prevent my computer from overheating. At maximum
frequency, Steam CPU usage is around 15% (and wineserver 11%).
No games are open, and the main Window has been closed. No network activity,
and no activity on the console with Steam invoked on the command line (bash).
Idle activity for Steam used to be around 5% for me.
[...]
A support person replied with this:
>As for the CPU performance issues, I've tested it on a few Windows devices and one Linux computer running Ubuntu (note I didn't test on WINE) and have been unable to reproduce the error you're seeing (all CPU usage for Steam was <1% when idle). I can only guess that this CPU performance issue is either related to WINE or a program which may be interfering with Steam.
I hope to get confirmation from other people whether this is, in fact, a bug
with Wine or just a problem with my particular setup. I'm using Ubuntu 18.04,
and this occurs with Wine 3.6 and 3.0 with the newest Steam.exe client, with
both an old 32-bit prefix and a new 64-bit prefix.
--
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=34010
Bug #: 34010
Summary: Gabriel Knight 3 demo - Depth / stencil buffer locking
is not implemented
Product: Wine
Version: 1.6-rc4
Platform: x86
URL: http://www.fileplanet.com/34716/30000/fileinfo/Gabriel
-Knight-3:-Blood-of-the-Sacred,-Blood-of-the-Damned-De
mo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
CC: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 45195
--> http://bugs.winehq.org/attachment.cgi?id=45195
log
Just black screen and sounds after launching.
--
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=43502
Bug ID: 43502
Summary: Microsoft Flight Simulator 2000 : only bottom half
view rendered and moved to the top
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: an0n1m0(a)hotmail.it
Distribution: ---
Created attachment 58883
--> https://bugs.winehq.org/attachment.cgi?id=58883
Comparison between windows and wine
Only the bottom half of the various views is rendered and moved to the top (see
the attached image for an example). You can trigger views by pressing S or
Shift + any number on the numpad.
Tested both in wine stable and devel.
--
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=42174
Bug ID: 42174
Summary: TeraCopy 3.0b2 crashes on startup
Product: Wine
Version: 2.0-rc4
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
Upon starting TeraCopy, it crashes and I get presented with one of those
infamous Wine crash dialogs.
The contents of the WINEDEBUG=+relay are attached.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38907
Bug ID: 38907
Summary: Homesite+ (v5.5): After doing a search, the focus is
not restored properly
Product: Wine
Version: 1.7.46
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fooquency(a)gmail.com
In Homesite+ (v5.5) on Windows, if while editing, you open the Find dialog
(Control+F or Search > Find), then exit it (escape key or the OS top corner
close button), the focus is restored to the editing window, with the cursor
set. Accordingly, pressing a key to type correctly shows the typed characters.
In Wine, the focus is not restored. Pressing a key results in the system beep.
Accordingly, in Wine, the user is required to use the mouse and click within
the editor area. Typing then works as normal.
--
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=46213
Bug ID: 46213
Summary: Sniper Elite 4 launcher window doesn't display
properly
Product: Wine
Version: 3.21
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 62893
--> https://bugs.winehq.org/attachment.cgi?id=62893
screenshot
Background and styles are missing
--
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=46118
Bug ID: 46118
Summary: d3d:wined3d_debug_callback 0x1464f0: glBlitFramebuffer
and glDrawElementsBaseVertex has generated an error
Product: Wine
Version: 3.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: version2013(a)protonmail.com
Distribution: ---
Created attachment 62755
--> https://bugs.winehq.org/attachment.cgi?id=62755
log.txt
Game "FlatOut" * has minor graphically glitches since wine-3.9.
Car windows and shadows periodically blink, or disappear and reaper rapidly.
A minor annoyance.
* FlatOut 1, even though my log.txt says 2.1. That is just the game installer
version number from gog.com
Regression test:
0db4d1c251d293333e2721a78d6156008a90ff6f is the first bad commit
commit 0db4d1c251d293333e2721a78d6156008a90ff6f
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Wed May 23 16:14:13 2018 +0430
wined3d: Default to OpenGL 4.4 contexts.
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
:040000 040000 b5834b97e8655f7a879c3ebb830f88c10521dd6a
d3cd9af46880f4cffcfe39f89e3f66da119edabd M dlls
--
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=49919
Bug ID: 49919
Summary: Regression: Logos Bible Software wineserver crash
entering text in passage guide search field
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: johnpgoodman(a)gmail.com
Distribution: ---
Created attachment 68295
--> https://bugs.winehq.org/attachment.cgi?id=68295
Crash from entering text in passage guide.
Using wine 5.18 staging I opened a new passage guide from the guides menu.
Entering references such as jn 1, rm 2 etc and pressing enter should result in
the guide populating. This happens about half the time. However many times it
crashes. Output attached. I've tried entering text in other guides but it
appears to be only the passage guide affected. The output is different in the 2
attachments. I believe this to be a regression as it hasn't happened to me
before today when I first used 5.18 staging.
--
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=44970
Bug ID: 44970
Summary: Deus Ex Human Revolution: people are invisible when
closer than 3 meters
Product: Wine
Version: 3.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: mtmkls(a)gmail.com
Distribution: ---
The game runs great in DX11 mode, it seems to run even smoother than in DX9
mode. However, when people are closer than 3 meters, they become invisible.
Only their glasses, eyeballs, and whatever they are holding (cigarettes,
weapons, phones etc.) are visible. When Jensen is in cover, only his hair and
his weapon is visible. In first person view the weapon is visible, but Jensen's
hand holding it is not. This glitch disappears after changing resolution, but
reappears when starting the game again.
--
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=49995
Bug ID: 49995
Summary: Evernote 6.24 stopped displaying notes after upgrade
to Wine 5.19
Product: Wine
Version: 5.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Distribution: ---
Created attachment 68402
--> https://bugs.winehq.org/attachment.cgi?id=68402
console output (app start, clicking notes, app shutdown)
Evernote notes are no longer being renders, although they seem to be there,
e.g. if I hover the note's text where a link should be I get a 'pointer' icon
and am able to click them.
Also, the release notes dialog when checking for upgrades no longer shows any
text.
--
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=49732
Bug ID: 49732
Summary: Death End Re;Quest 2 crashes on startup
Product: Wine
Version: 5.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: soulsofblack12(a)hotmail.com
Distribution: ---
Game crashes after launching and opening the first window. This affects every
wine version i could try (5.0 up to 5.15). I could get these lines from a
Proton log (Proton-tkg 5.15 compiled from source, only patch added is child
window)
wine: Unhandled page fault on write access to 0000000000000001 at address
000000007B43FE0D (thread 00c8), starting debugger...
2790.914:005c:008c:err:plugplay:set_report_from_event Failed to find device at
index 0
2790.914:005c:008c:err:plugplay:set_report_from_event Failed to find device at
index -2147483648
2790.930:005c:008c:err:plugplay:set_report_from_event Failed to find device at
index 0
2790.930:005c:008c:err:plugplay:set_report_from_event Failed to find device at
index -2147483648
2790.946:00c4:00c8:trace:seh:call_teb_handler handler at 0x7b463130 returned 1
2790.946:00c4:00c8:warn:seh:virtual_unwind exception data not found in
L"DeathEndReQuest2.exe"
Unhandled exception: page fault on write access to 0x00000001 in 64-bit code
(0x000000007b43fe0d).
--
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=49541
Bug ID: 49541
Summary: Lara Croft and the Temple of Osiris stops silently at
launch
Product: Wine
Version: 5.12
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 67671
--> https://bugs.winehq.org/attachment.cgi?id=67671
msvcrt
The game folder contains msvcr110 library and launcher starts when it set to
'native,builtin'
wine-5.12-64-ge0e3b6bc91
--
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=46423
Bug ID: 46423
Summary: Kara no Shoujo crashes in fullscreen mode
Product: Wine
Version: 4.0-rc4
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 63195
--> https://bugs.winehq.org/attachment.cgi?id=63195
Log
There is a trial of the game here (Warning - NSFW):
https://www.mangagamer.com/detail.php?goods_type=1&product_code=79
Windowed mode works fine, fullscreen crashes the game.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39342
Bug ID: 39342
Summary: Thunder crashes without native riched20
Product: Wine
Version: 1.7.51
Hardware: x86
URL: http://down.sandai.net/thunder7/Thunder_dl_7.9.40.5006
.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: hillwoodroc(a)gmail.com
Regression SHA1: 73ab5034efb418251c17a0e49bbf1dc4190e5bfe
Distribution: SUSE
Created attachment 52431
--> https://bugs.winehq.org/attachment.cgi?id=52431
trace-richedit-thunder
1. Dowmload from http://down.sandai.net/thunder7/Thunder_dl_7.9.40.5006.exe
2. run "wine Thunder_dl_7.9.40.5006.exe" to install
3. wine C:\\Program\ Files\\Thunder\ Network\\Thunder\\Program\\Thunder.exe
-StartType:DesktopIcon
Useing "winetricks riched20" can fix it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43650
Bug ID: 43650
Summary: nolf2 game error on install
Product: Wine
Version: 2.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bronsonmathews(a)gmail.com
Distribution: ---
I get the following when launching the installer for NOLF2. Can grab the game
here: http://nolfrevival.tk/
fixme:winediag:start_process Wine Staging 2.15 is a testing version containing
experimental patches.
fixme:winediag:start_process Please mention your exact version when filing bug
reports on winehq.org.
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
err:ole:create_server class {91814ec0-b5f0-11d2-80b9-00104b1f6cea} not
registered
err:ole:CoGetClassObject no class object {91814ec0-b5f0-11d2-80b9-00104b1f6cea}
could be created for context 0x4
--
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=12030
Summary: MozyHome: backup service does not work
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.mozy.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: raccoonone(a)procyongames.com
Created an attachment (id=11369)
--> (http://bugs.winehq.org/attachment.cgi?id=11369)
console output
trying to start the MozyHome backup service (mozybackup.exe) via "wine net
start 'mozybackup'" causes the process to start. But after a couple of seconds
it exits without an error message.
I'm not sure what is causing it to close, but most of the fixme's show up right
as mozybackup disappears from the process list.
I've attached a log of the console output.
Any ideas? I was going to start by looking into implementing
WTSEnumerateSessionsW, WTSFreeMemory, ParseStringSidToSid, and
WSALookupServiceBeginW
--
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=9805
Summary: fixme:ole:OaBuildVersion16 Version value not known yet
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Created an attachment (id=8254)
--> (http://bugs.winehq.org/attachment.cgi?id=8254)
WINEDEBUG=+relay,+msgbox
With an old program from http://www.derouck.com/cdromgps/f/index.asp
i have a messagebox with :
"Wrong version of operating system; requires Windows NT 3.51 (build 1057 or
above)"
I have tried with all different windows version in winecfg.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43494
Bug ID: 43494
Summary: Microsoft Flight Simulator 2000 crashes when losing
focus during flight
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: an0n1m0(a)hotmail.it
Distribution: ---
Created attachment 58873
--> https://bugs.winehq.org/attachment.cgi?id=58873
log of the crash using +loaddll,fixme+all,warn+all,err+all
During a flight, on Windows, if the game loses the focus, it is paused
automatically (equivalent to pressing P). Under wine, the game crashes.
The game behaves normally when a menu is opened (in this case, everything is
paused, and the game doesn't crash).
If I select in winecfg "emulate a virtual desktop", the game doesn't crash
anymore because of this issue.
I tested this behaviour on ubuntu with both unity and gnome3, under wine 1.6,
wine stable (2.0.2) and wine-devel (2.16). The results were all the same.
I attached the result of the following commands:
export WINEDEBUG=+loaddll,fixme+all,warn+all,err+all
wine start 'C:\Program Files\Microsoft Games\FS2000\FS2000.EXE' &>log.txt
Then I started a flight and clicked outside of the game window (so that the
crash occurs).
--
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=43496
Bug ID: 43496
Summary: Microsoft Flight Simulator 2000 : game pauses when
tooltips are shown
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: an0n1m0(a)hotmail.it
Distribution: ---
Everytime one hovers the mouse on an instrument, then move the mouse out to let
the tooltip disappear, the game pauses. The game normally should pause only
when the game window loses focus (but when the whole window lose focus the game
crashes, see bug #43494).
This happens on all versions of wine from 1.6 to the latest devel (2.16).
There is a workaround for this (as in #43494): enable virtual desktop on
winecfg.
Everytime I reproduce this behaviour (show tooltip, move the mouse, the tooltip
disappears => game paused) this shows up in the terminal:
warn:dsound:IDirectSound8Impl_SetCooperativeLevel level=DSSCL_PRIORITY not
fully supported
warn:dsound:DSOUND_PerformMix Probable buffer underrun
--
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=43495
Bug ID: 43495
Summary: Microsoft Flight Simulator 2000 : blurry and purple
text
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: an0n1m0(a)hotmail.it
Distribution: ---
Created attachment 58874
--> https://bugs.winehq.org/attachment.cgi?id=58874
text rendering comparison
The text in the game looks really bad, compared to what it should look. See the
attached image for a comparison.
This behaviour is present on all versions of wine (tested from 1.6+ to devel).
As a side note, it is rendered the same on Virtualbox running Windows XP. On
native windows (tested on windows 8.1) it looks good.
--
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=47230
Bug ID: 47230
Summary: Provide hint in crash report module table to
distinguish between Wine builtins cross-compiled to PE
format and native overrides
Product: Wine
Version: 4.8
Hardware: x86-64
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as it says. Future Wine releases/builds will provide builtin modules by default
in PE format. It will be harder to diagnose crash logs if users put native
overrides in place as the modules table no longer provides the obvious hints in
case of non-core / overridable dlls (ELF-PE hybrid, DWARF, load address range,
'name-<elf>').
Take bug 47226 for example:
--- snip ---
...
Modules:
Module Address Debug info Name (160 modules)
PE 130000- 13d000 Deferred ilmthread-2_2
PE 250000- 29b000 Deferred qt5winextras
PE 2a0000- 6f7000 Deferred qt5gui
PE 700000- 8f3000 Deferred libglesv2
PE 900000- e51000 Deferred qt5widgets
PE e60000- e7e000 Deferred zlibwapi
PE e80000- ef6000 Deferred lcms2
PE f00000- 11c2000 Deferred ilmimf-2_2
PE 11d0000- 1219000 Deferred half
PE 1220000- 1236000 Deferred iex-2_2
PE 1240000- 1258000 Deferred imath-2_2
PE 1260000- 1389000 Deferred libraw
PE 15f0000- 1721000 Deferred qwindows
PE 1840000- 184d000 Deferred qico
PE 1850000- 1890000 Deferred qjpeg
PE 1890000- 18ec000 Deferred qtiff
PE 61000000- 61034000 Deferred qt5xml
PE 64000000- 640d3000 Deferred qt5network
PE 65100000- 651a7000 Deferred msvcp110
PE 66500000- 66523000 Deferred vcomp110
PE 67000000- 67551000 Deferred qt5core
ELF 7a800000- 7aa10000 Deferred opengl32<elf>
\-PE 7a850000- 7aa10000 \ opengl32
ELF 7b400000- 7b85b000 Dwarf kernel32<elf>
\-PE 7b420000- 7b85b000 \ kernel32
ELF 7bc00000- 7bd54000 Deferred ntdll<elf>
\-PE 7bc20000- 7bd54000 \ ntdll
ELF 7c000000- 7c004000 Deferred <wine-loader>
PE 140000000- 1403ee000 Deferred easyhdr3
PE 180000000- 18004a000 Deferred openjp2
...
ELF 7f86d5ec7000- 7f86d5ef3000 Deferred version<elf>
\-PE 7f86d5ed0000- 7f86d5ef3000 \ version
ELF 7f86d5ef3000- 7f86d6298000 Dwarf libwine.so.1
ELF 7f86d629a000- 7f86d64c3000 Deferred
ld-linux-x86-64.so.2
ELF 7ffc37f2a000- 7ffc37f2b000 Deferred [vdso].so
Threads:
process tid prio (all id:s are in hex)
...
00000058 (D) C:\Program Files\easyHDR 3 Demo\easyHDR3.exe
...
00000070 0 <==
...
--- snip ---
Here, 'msvcp110.dll' and 'vcomp110.dll' are Wine builtins in PE format.
I propose to add a hint in the table for Wine builtin modules in PE format for
easier diagnosis of crash reports.
$ wine --version
wine-4.8-202-g61aea5a987
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=21187
Summary: OLE Exception code 80004002 - AmiBroker + AmiQuote
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mxn(a)atlas.cz
Steps to reproduce:
1) Download AmiBroker (trial application ver. 5.20) from
http://www.amibroker.com/download.html
2) Install it with command 'wine AmiBroker520.exe'
3) 'cd' to directory where AmiBroker trianl is installed
4) Start AmiBroker with command 'wine Broker.exe'
5) Start AmiQuote with command 'wine AmiQuote/Quote.exe'
6) In 'AmiQuote' choose 'Tools -> Auto-update Amibroker database'
7) Error dialog pops up 'OLE Exception code 80004002'
8) downgrade wine to ver. 1.1.33
9) Repeat steps 4) - 6), no Error dialog is displayed and everything works
correctly (database is updated)
Note: I believe bug is also reproducible in wine 1.1.34.
--
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=45540
Bug ID: 45540
Summary: WeGame: password input widget of login interface isn't
useable.
Product: Wine
Version: 3.13
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jactry92(a)gmail.com
Distribution: ---
Created attachment 61946
--> https://bugs.winehq.org/attachment.cgi?id=61946
password input widget was marked by red
Steps to reproduce:
1. $ winetricks -q mfc42 cjkfonts
2. $ wine WeGameMiniLoader.3.6.1.5080.gw.exe
3. $ cd .wine/drive_c/Program\ Files/WeGame
4. $ WINEDLLOVERRIDES="msvcr100=n" wine tgp_daemon.exe
Expected: Users can input account and password for login.
Actually: There is a crash of TASLogin.exe. Account input widget is useable but
password doesn't work. Can't give input focus to it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37332
Bug ID: 37332
Summary: Cannot run Rome Total War (installed / run from Steam)
Product: Wine
Version: 1.7.25
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winebugz.20.dllahr(a)xoxy.net
Created attachment 49642
--> https://bugs.winehq.org/attachment.cgi?id=49642
output from running wine
Brief version: I'm using wine 1.7.25 compiled from sources on a Mac probook
running OS X 10.9.5. I was able successfully install and run Steam, log in to
my Steam account, and have Steam download and install Rome Total War. When I
attempt to run Rome Total War (either through the Steam interface or through
the command line - which still calls Steam), I have managed to get it to
display the initial screen, but then it either hangs (most of the time) or
crashes. I tried running in a virtual desktop mode, no change in behavior.
More info: I previously installed wine 1.6.2 using HomeBrew. Prior to
compiling wine 1.7.25, I used HomeBrew to check for / install listed
dependencies. I'm using
WINEPREFIX=/opt/no_backup/wine
Side note: I was able to get the game working on an ubuntu system running on
virtualbox on this same Mac, however the performance was very slow - the mouse
response was very, very slow.
--
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=47568
Bug ID: 47568
Summary: Napoleon Total War Steam
Product: Wine
Version: unspecified
Hardware: x86-64
OS: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tylerpelletier(a)outlook.com
Fresh install of pop os fresh install of wine and steam. I got napoleon total
war definitive edition to install. Campaign runs fine. I go to launch a battle
and I get a pop up saying "program error" is ready. the program has encountered
a serious problem and needs to close I click for more details then it says
please wait for details but that stalls
I left the window open saying error details tried to launch the game to try to
get more details and it says steam error 227 this time. closed it and it now
launches.
--
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=47429
Bug ID: 47429
Summary: Medieval 2 total war gold crash on launch
Product: Wine
Version: 4.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dam.rocchi(a)gmail.com
Distribution: ---
Created attachment 64777
--> https://bugs.winehq.org/attachment.cgi?id=64777
Debug +loaddll,+module,+wgl in fresh 32 bot prefix
Wine crash after launch, with message box "Unspecified error" and exit.
--
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=43926
Bug ID: 43926
Summary: Medieval: Total War. No mouse pointer and no text in
Battle mode.
Product: Wine
Version: 2.19
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: vir.found(a)gmail.com
Created attachment 59561
--> https://bugs.winehq.org/attachment.cgi?id=59561
wine-2.19 (Staging): WINEDEBUG="fixme-all,+d3d_surface,+d3d9"
Steps to reproduce:
1. Start the game.
2. Press "Quick Battle".
Mouse pointer is invisible.
All text on screen is invisible.
Reproducible on all wine versions I managed to grab:
2.0
2.0.2
2.7
2.18
2.19
2.19 (Staging)
Reproducible with XQuartz and with native macdriver
--
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=47127
Bug ID: 47127
Summary: Nioh: unhandled page faults
Product: Wine
Version: 4.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mail(a)ap4y.me
Distribution: ---
Created attachment 64341
--> https://bugs.winehq.org/attachment.cgi?id=64341
console output with lutris + dxvk and steam
Nioh (steam game id 485510) is crashing quite often during gameplay upon
performing death blows and interacting with some objects. It requires dxvk to
run but it doesn't seem to be related as I was able to complete several levels
with crashes. Regular log doesn't show much so I'm attaching warn+all log and
backtrace. There are wmv/quartz related error messages in the log but I don't
think it's related to the crash as there are no cutscenes played when crashes
happen.
--
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=45699
Bug ID: 45699
Summary: Microsoft Office 2016 Pro Plus 64-bit/x64 fails to
install
Product: Wine
Version: 3.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: alexander-winehq(a)xmine128.tk
Distribution: ---
Created attachment 62125
--> https://bugs.winehq.org/attachment.cgi?id=62125
Annotated installation log file
Installation was done using an online installer with name:
Setup.X64.de-de_O365ProPlusRetail_XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX_TX_DB_b_32_.exe
(The included GUID was redacted since I'm not sure whether this is a license
key or not.)
I've added a log file with some observations I've made during install included
inline – you can find these by searching for the letters "!!!" (without
quotes). In particular, the following lines appear several times when the
installer gets stuck at 58% before it aborts:
wine: Call from 0x7bc5be0c to unimplemented function
RPCRT4.dll.NdrClientCall3, aborting
012d:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
014b:err:msi:execute_script Execution of script 0 halted; action
L"[C:\\Program Files\\Common Files\\Microsoft
Shared\\OfficeSoftwareProtectionPlatform\\OSPPOBJS.DLL|C:\\Program
Files\\Common Files\\Microsoft
Shared\\OfficeSoftwareProtectionPlatform\\osppobjs-spp-plugin-manifest-signed.xrm-ms<=>S-1-5-21-0-0-0-1000<=>{90160000-007E-0000-1000-0000000FF1CE}]CAInstallSp"...
returned 1603
014b:err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize"
returned 1603
Most of the other stuff appears unproblematic except maybe for
CreateSymbolicLink being stubbed.
--
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=49621
Bug ID: 49621
Summary: Tableau Desktop crashes (apparently inside
gdi32.GetFontFileInfo)
Product: Wine
Version: 5.13
Hardware: x86
URL: https://downloads.tableau.com/tssoftware/TableauDeskto
p-64bit-2020-2-2.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
sha1sum TableauDesktop-64bit-2020-2-2.exe
33445211ab66cb07990e11468521ca848a23ed7a TableauDesktop-64bit-2020-2-2.exe
Someone reported this crashing on reddit, he copied it over from windows disk,
i guess because of failing installer (bug 49620)
For me it crashes too; Looks like for me it chokes in GetFontFileInfo
00d4:Call gdi32.GetFontFileInfo(00370009,00000000,00217fa0,00000018,00000000)
ret=7fd5ee6937e3
00d4:trace:seh:dispatch_exception code=c0000005 flags=0 addr=00007FD5F0EB189A
ip=f0eb189a tid=00d4
Hack below makes it start for me into login window. Maybe some font-guru could
have a look at this.
Note: I tried install various fonts with winetricks but that didn't help either
Hack:
diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index f82a8c1641..1b60f05354 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -8885,6 +8885,8 @@ BOOL WINAPI GetFontFileInfo( DWORD instance_id, DWORD
unknown, struct font_filei
needed = &required_size;
font = entry->obj;
+
+ if(info)
*needed = sizeof(*info) + strlenW(font->fileinfo->path) * sizeof(WCHAR);
if (*needed > size)
{
--
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=50199
Bug ID: 50199
Summary: Keyboard failure for cursor keys under vDosPlus since
Ubuntu 18
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: dos
Assignee: wine-bugs(a)winehq.org
Reporter: hheinscher(a)gmail.com
Distribution: ---
In Ubuntu Mate 16 I am running vDosPlus with FoxPro under Wine.
All keys go well - even cursor keys.
But since Ubuntu 18 and 20 the cursor keys are no longer available (no
reaction).
What causes this behavior?
--
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=49879
Bug ID: 49879
Summary: Minecraft educational version crashes at start (native
concrt140/msvcp140 is workaround)
Product: Wine
Version: 5.17
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
As the title says
After winetricks vcrun2017 the application starts fine, playing a bit with
native dlls i think minimal native set is concrt140/msvcp140
Short +relay log below;
0024:Ret msvcp140._Mtx_init_in_situ() retval=0d792a18 ret=01a54145
0024:Call ucrtbase.malloc(00000008) ret=01a73ca8
0024:Call ntdll.RtlAllocateHeap(039f0000,00000000,00000008) ret=7e943888
0024:Ret ntdll.RtlAllocateHeap() retval=03afffd8 ret=7e943888
0024:Ret ucrtbase.malloc() retval=03afffd8 ret=01a73ca8
0024:Call ucrtbase.malloc(00000038) ret=01a73ca8
0024:Call ntdll.RtlAllocateHeap(039f0000,00000000,00000038) ret=7e943888
0024:Ret ntdll.RtlAllocateHeap() retval=0d792a90 ret=7e943888
0024:Ret ucrtbase.malloc() retval=0d792a90 ret=01a73ca8
0024:trace:seh:dispatch_exception code=c0000096 flags=0 addr=686C9AA2
ip=686c9aa2 tid=0024
0024:trace:seh:dispatch_exception eax=0d7927c0 ebx=00000000 ecx=0d792ab0
edx=01a73ca8 esi=0d792a90 edi=ffffffff
.
.
wine: Unhandled privileged instruction at address 686C9AA2 (thread 0024),
starting debugger...
0024:Call ntdll.RtlInitUnicodeString(0031e628,7b089750
L"\\Registry\\Machine\\Software\\Microsoft\\Windows
NT\\CurrentVersion\\AeDebug") ret=7b010295
--
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=46636
Bug ID: 46636
Summary: Old Avira AntiVir installer is not rendered properly
Product: Wine
Version: 4.1
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 63550
--> https://bugs.winehq.org/attachment.cgi?id=63550
Screenshot wine-4.1
See screenshots.
Note that in wine-4.x it is different and in wine-3.17. Somewhere after
wine-3.17 the screen turned from white into black - not sure if this is a
regression, but it seems so.
--
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=49077
Bug ID: 49077
Summary: Unhandled exception: page fault on read access to
0x00000000 in 32-bit code (0x782795a4)
Product: Wine
Version: 5.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rich.coe2(a)gmail.com
Distribution: ---
distro: opensuse tumbleweed
version wine-32bit-5.7-3.1.x86_64
I upgraded from previous tumbleweed version to new version yesterday.
I'm running AdobeDigitalEditions that I've been using almost daily.
Today was first day to run it after the upgrade yesterday.
I'm getting Unhandled exception: page fault on read access to 0x00000000 in 32-
bit code (0x782795a4) when I run ade after running for about a minute. It does
not seem to be reacting to what I'm doing in the UI at the time.
It's always the same address, 0x782795a4.
I invoke ADE this way:
WINEARCH=win32 WINEPREFIX=$HOME/.winedotnet wine c://Program\
Files//adobe//Adobe\ digital\ editions\ 4.5//digitaleditions.exe
I ran ADE under winedbg, and after a while it crashed. The backtrace is empty.
It suggests to me a stack corruption followed by a return to value overwritten
on the stack.
I am looking for any diagnostics to track down issue.
I can run in debug, compile from source, or provide necessary traces.
--
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=48505
Bug ID: 48505
Summary: WinRAR x64: Unhandled exception: unimplemented
function GDI32.dll.ScriptGetCMap called in 64-bit code
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: esdrastarsis(a)gmail.com
Distribution: ---
The program calls the ScriptGetCMap function in the gdi32 dll, but it only
exists in the usp10 dll, I made a patch to connect the function in both dlls
via the spec 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.
http://bugs.winehq.org/show_bug.cgi?id=21161
Summary: Still Life 2: Black and broken textures
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otto_rey(a)yahoo.com.ar
Still Life 2 display black and broken textures
--
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=43170
Bug ID: 43170
Summary: Far Cry 4 fills dead air with colored bars
Product: Wine
Version: 2.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: noonetinone(a)gmail.com
Distribution: Other
Created attachment 58434
--> https://bugs.winehq.org/attachment.cgi?id=58434
Far Cry 4 shot #1
Far Cry 4 looks good. Everything that belongs in the scene is rendered
properly.
Cars, animals, people. buildings, grass, and the trees look ok. The problem is
empty air is being flooded with rapidly flashing bars and strips of different
colors.
While that is happening the following sample lines are being spammed at the
console. I also have some screenshots.
_____________________________________________________________________________
fixme:d3d11:wined3d_map_flags_from_d3d11_map_type Unhandled map_type 0x2.
fixme:d3d11:d3d11_immediate_context_RSSetViewports Multiple viewports not
implemented.
<<REPEATED>>
fixme:d3d11:d3d11_immediate_context_RSSetViewports Multiple viewports not
implemented.
fixme:d3d11:d3d11_immediate_context_Flush iface 0x1027390 stub!
fixme:dxgi:dxgi_swapchain_GetDesc iface 0x1530e670, desc 0x15dfe090 partial
stub!
fixme:dxgi:dxgi_swapchain_GetDesc Ignoring ScanlineOrdering, Scaling and
SwapEffect.
--
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=31526
Bug #: 31526
Summary: Delphi 7: object inspector prevents copy/paste of
components in form editor
Product: Wine
Version: 1.5.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djelinski1(a)gmail.com
Classification: Unclassified
To reproduce this bug:
- place any control on the form designer
- press ctrl-c, ctrl-v. There should be two controls now, which is the correct
behavior
- press f11 to activate the object inspector
- click on any of the previously placed controls
- press ctrl-c, ctrl-v. No new controls appear. If you press ctrl-v repeatedly,
you may notice that new text is pasted in previously selected object inspector
property.
--
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=21155
Summary: Delphi: combobox choices hidden behind object
inspector
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kl234(a)web.de
Created an attachment (id=25399)
--> (http://bugs.winehq.org/attachment.cgi?id=25399)
Choices displayed behind the object inspector
When I try to modify the value of a property in Delphi's object inspector, I
can't see the list of possible choices because this list is displayed behind
the object inspector.
The only exception is the property at the very bottom of the object inspector
where it's possible to see some of the choices below the bottom of the object
inspector window (see attached screen capture).
This happens with both Delphi versions I tested with wine 1.1.35: Delphi 3 and
Delphi 7.
--
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=17614
Summary: Rise of Nations: Both mouse keys required for single
left-click
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://www.microsoft.com/games/thronesandpatriots/downlo
ads.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
I don't know when this first started, but this is apparent in Wine 1.0.0
through 1.1.16.
The cursor in Rise of Nations and it's expansion Thrones and Patriots ignores
right-clicks and left-clicks. Clicking BOTH left and right mouse button acts
as a left click.
There is a workaround. Editing the rise2.ini file, setting "ForceGDICursor=1"
allows the cursor/mouse to behave normally. It also corrects a transparency
problem with the cursor.
I don't know what traces might be relevant here...
--
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=20025
Summary: The displayed window is offset in Flirefly
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.freshtel.net/download/internetphone/
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lats(a)yless4u.com.au
Firefly 3.3 windows are being offset from the left and the top by what looks to
be the width/height of the borders. See the screenshot.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19277
Summary: Internet Explorer 2.0 (Win95) fails to install
Product: Wine
Version: 1.0.1
Platform: PC
URL: http://www.oldversion.com/download/msie20.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, win16
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Internet Explorer 2.0 for Windows 95 fails to install with an INST32.DLL error:
"ThunkConnect32 Failure!!"
This is followed by a second dialog stating:
"A required DLL or function entry point in a required DLL is missing."
The entire console output is:
err:thunk:_loadthunk (INST16.DLL, instthk_ThunkData16, INST32.DLL): Unable to
load 'INST16.DLL', error 2
Wine has to be set to Win95 mode to install.
Workaround is manual extraction.
Same in latest git.
--
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=31873
Bug #: 31873
Summary: 'client.exe' crash when exiting it
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
I run 'client.exe' in Ubuntu 12.04.1 32bit with wine 1.5.14.
It look quite well, but it crash when I try to exit 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=16392
Summary: Popup showing of incorrectly size.
Product: Wine
Version: 1.1.10
Platform: PC
URL: http://emuleplus.info/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vladimiroski(a)gmail.com
When you hover the mouse over the status bar of eMule Plus, a popup comes with
some information for each tab.
The problem is that the popup for the first tab (the biggest one) is displayed
corrupted (see attachment), others are fine.
--
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=33422
Bug #: 33422
Summary: reporting 'EditWndProc_common undocumented message
0xbf' on behalf of the message
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: heinrich5991(a)gmx.de
Classification: Unclassified
fixme:edit:EditWndProc_common undocumented message 0xbf, please report
That's how you can reproduce it:
1. Download Kaiser 1.22a (http://www.yadam.de/KAISER/kaiser.htm).
2. Start it.
3. When prompted for the names of the players, focus the edit field and click
somewhere else in the window where no other input are.
--
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=20617
Summary: Multithreaded crashing programs create misleading
backtraces when winedbg --auto is called
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugzilla.winehq.org(a)urbanec.net
Created an attachment (id=24590)
--> (http://bugs.winehq.org/attachment.cgi?id=24590)
MultipleThreads test case executable - requires Zoo.dll
When a multithreaded program crashes and winedbg --auto is called to generate a
back trace, the result is not always a back trace for the thread that caused
the crash in the first place.
The attached files can be used to reproduce this problem. The program
MultipleThreads.exe takes no arguments and creates three new threads, each with
a data structure that contains a timeout variable set to 200ms and the thread
start function is set to a function in Zoo.dll. The main thread also calls the
same function in Zoo.dll with the timeout variable set to 240ms.
The function in Zoo.dll prints the value of the timeout, then sleeps for the
duration of the timeout. After this, the function prints that it will crash,
then causes an exception by a write to 0x00000000.
When I run this program, the output is non-deterministic, but more often than
not, the reported crashing thread does not match the thread which is shown in
the backtrace. The discrepancy can be seen from this output:
Thread 0x0019 *** C R A S H I N G ***
wine: Unhandled page fault on write access to 0x00000000 at address 0x10001123
(thread 0019), starting debugger...
Thread 0x001a *** C R A S H I N G ***
Thread 0x001b *** C R A S H I N G ***
Thread 0x0009 *** C R A S H I N G ***
Unhandled exception: page fault on write access to 0x00000000 in 32-bit code
(0x10001123).
... [Register, and stack dumps, backtrace, module list] ...
Threads:
process tid prio (all id:s are in hex)
00000008 (D) Z:\tmp\WineCrashTest\MultipleThreads.exe
0000001b -2
0000001a -2 <==
00000019 -2
00000009 -2
Notice how the first thread to report crash intent was 0x0019, which matches
the the page fault reported by except.c:start_debugger(). However, the thread
list generated by winedbg shows the current thread to be 0x001a.
Also notice that even though the crashing process invoked the debugger on
exception in thread 0x0019, the other three threads in the crashing process
continued to run and generated further page faults before the debugger started.
I would expect that when a crash occurs, all threads in the process would be
suspended immediately and the debugger would be able to determine the thread
that caused the exception.
--
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=20584
Summary: Lemmings Revolution - Crash on exit.
Product: Wine
Version: 1.1.32
Platform: PC-x86-64
URL: http://downloads.gamezone.com/demosfiles/t1178.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ezekiel000(a)lavabit.com
Created an attachment (id=24561)
--> (http://bugs.winehq.org/attachment.cgi?id=24561)
Terminal output
When exiting the game wine crashes and then crashes the dialogue saying that
wine has crashed.
Running Ubuntu 9.10 amd64 wine 1.1.32 with nVidia Geforce 8200 with 185.18.36
official drivers.
--
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=23781
Summary: Parsing of money amount in "BNC Express" ignores
decimal separator
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pierre.guerrier(a)m4x.org
CC: pierre.guerrier(a)m4x.org
Created an attachment (id=29819)
--> (http://bugs.winehq.org/attachment.cgi?id=29819)
Screenshot of buggy input field
I have been trying to run the "BNC Express" program in CrossOver Pro for Mac
(commercial product based on wine by CodeWeavers, and per the CrossOver support
opinion, the bug below belongs to wine. What follows is an updated repost of
the ticket in the CodeWeaver DB:
http://www.codeweavers.fr/support/tickets/browse/?ticket_id=809692
)
Quick context: BNC Express is an accounting program for the self-employed,
generating income reports validated by the french IRS, quite popular I think in
France. It looks like a VB program, publisher website here
http://www.trefle-rouge.com/ - all in french I'm afraid.
The GUI is generally OK, but there is a nasty bug whenever inputting a monies
amount in the program (which of course, happens quite a lot). You are supposed
to type in, say "45,34" (for 45 euros and 34 cents). The part after the
separator is optional. In any case, the software will the normalize the input
and turn it into "45,00" e.g. if you just entered "45". The bug is that it
misses out the separator in Wine/CrossOver. So "45,34" turns into "4534,00".
I have not found anything similar in the ticket database (neither codeweaver or
winehq) or on web. I did try to change the sDecimal and sMonDecimal values in
the Registry (seen another ticket for a VB app that was solved this way). This
DOES change the separator used when re-displaying the normalized amount
(display is set by sDecimal). But it does not change the buggy behavior of
ignoring the separator when parsing the input (it is not possible to input
anything other than numbers and , and . in monies field, the program filters it
and turns "." into "," immediately upon typing - this is an expected behavior,
same as windows).
(this is not a locale problem, the windows environment did inherit the french
locale of the Mac system all right)
When looking further, I found some vaguely reminiscent stuff on winehq, for
instance:
http://bugs.winehq.org/show_bug.cgi?id=10765
(except the bug seems to be on parsing, not on output format)
There is a freely downloadable demo version on the TrefleRouge website above
(or I can e-mail it you if you can't find your way in the french website).
Launching the demo, loading the sample balance sheet takes you to the main
screen which is simply bill/receipts input, and the bug shows up immediately. I
have attached a screenshot of this screen with the problem highlighted.
--
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=34126
Bug #: 34126
Summary: RaidCall 7.2.6: high (100%) CPU usage (on login)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gonhidi(a)gmail.com
Classification: Unclassified
Created attachment 45385
--> http://bugs.winehq.org/attachment.cgi?id=45385
MacPorts Wine 1.6 Raidcall 7.2.6 log: launch and login
Wine 1.6 causes RaidCall's 7.2.6 CPU usage to spike after a successful login.
The offending process remains active after exiting the application preventing
the wineserver and the other wine processes from closing.
I have observed this behaviour when running MacPort's 1.6 wine port, on OS X
10.8.4. It is not present on the previous version of the build, 1.4.1_4.
Running winedbg and calling info processes before and after RaidCall login
shows a new process likely to be the CPU hog, 'Wizard.exe' (part of the
RaidCall installation).
Wine-dbg>info process
pid threads executable (all id:s are in hex)
00000025 9 'raidcall.exe'
00000041 12 \_ 'Wizard.exe'
00000022 2 'explorer.exe'
0000000e 5 'services.exe'
0000001a 3 \_ 'plugplay.exe'
00000012 4 \_ 'winedevice.exe'
The way I run RaidCall is by executing "wine start 'C:\Program
Files\RaidCall\raidcall.exe'" (after having installed the program using "wine
raidcall.exe"). The result of a "wine start 'C:\Program
Files\RaidCall\raidcall.exe' &> log-run.txt" is attached.
Killing the offending process doesn't seem to break RaidCall, at least
superficially. I have not tested deeper to see if it is a valid workaround.
I have tried using git bisect to trace the behaviour to a commit. I followed
the instructions from “MacOSX/Building” section “Build Wine git version, the
MacPorts way”
(<http://wiki.winehq.org/MacOSX/Building#head-ca82f43f942cbed405199780ca73d07…>),
but running wine from within the build directory (i.e. skipping the make
install step):
make clean
./configure CPPFLAGS='-I/usr/X11/include -I/opt/local/include' LIBS='-lGL
-lGLU' LDFLAGS='-L/usr/X11/lib -L/opt/local/lib'
make
DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib:/usr/lib:/opt/local/lib" ./wine
raidcall.exe
DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib:/usr/lib:/opt/local/lib" ./wine start
'C:\Program Files\RaidCall\raidcall.exe'
Doing nothing but that I soon started having build problems (likely reason
being that of the “Compiling Wine on Mac OS X 10.8.2?” February 2013 wine-devel
mailing list thread) so I set CC to MacPort's clang 3.3
(@3.3_0+analyzer+python27). From then on, things went smoothly and led to the
following git commit:
[2f48b12c575c4e1afc6115a39d60722acda73d7d] gdi32: Use the Mac driver by default
Note that using the aforementioned build process the 100% CPU usage also
appears when launching the RaidCall installer, so perhaps the issue is not the
same or something else is showing up.
--
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=49800
Bug ID: 49800
Summary: World of Warcraft appears on the wrong monitor when
running full screen
Product: Wine
Version: 5.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: brgerst(a)gmail.com
Distribution: ---
Prior to 5.16, World of Warcraft appeared full screen on the primary (right)
monitor of a dual monitor setup. On 5.16, it appears on the left monitor and
can't be moved back to the right unless set to windowed mode. Reverting commit
c5ec1585f6e5211a2b63e3435748210552250534 ("winex11.drv: Always update
_NET_WM_STATE in update_net_wm_states().") fixes the problem. The desktop
environment is MATE on Fedora 32.
Trace output without the patch reverted:
0024:trace:x11drv:update_net_wm_states setting wm state 0 for window
0x1006a/4000005 to 1 prev 1
0024:trace:x11drv:update_net_wm_states setting wm state 1 for window
0x1006a/4000005 to 0 prev 0
0024:trace:x11drv:update_net_wm_states setting wm state 2 for window
0x1006a/4000005 to 0 prev 0
0024:trace:x11drv:update_net_wm_states setting wm state 3 for window
0x1006a/4000005 to 0 prev 0
0024:trace:x11drv:update_net_wm_states setting wm state 4 for window
0x1006a/4000005 to 0 prev 0
--
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=46075
Bug ID: 46075
Summary: Delta Rune: Wine crashes after going past the first
Forest room
Product: Wine
Version: 3.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ryu.ketsueki(a)outlook.com
Distribution: ---
Created attachment 62687
--> https://bugs.winehq.org/attachment.cgi?id=62687
Crash backtrace
This recently released game called Delta Rune, commonly known as well as SURVEY
PROGRAM, because this is how it was publicly released. The game works just fine
until this specific area of the game called Forest. Past the save point, wine
crashes and forces the game to close. Backtrace is attached.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22689
Summary: Bonzai3D - dialogue boxes inactive when opened
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://formz.com/products/bonzai3d/bonzai3dDownloadTri
al.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nick(a)lasventajas.com
In Bonzai3D dialogue boxes are inactive until the window bar of the box is
clicked. For example, right clicking on an object in the project window and
selecting, 'Attributes', invokes a dialogue box with a number of options
relative to the object. All options are inactive until the window bar of the
dialogue box is clicked at which point the box becomes live.
--
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=24979
Summary: halfworking tab key
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emoxam(a)gmail.com
"tab" key works only "to tree". not "from tree" of a connections list!
--
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=46176
Bug ID: 46176
Summary: Altium Designer 13.2.5 (10.1810.28368) hangs on
startup
Product: Wine
Version: 3.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lvd.mhm(a)gmail.com
Distribution: ---
Created attachment 62837
--> https://bugs.winehq.org/attachment.cgi?id=62837
Short (default) log output
After the software starts, it shows splashscreen with some activity indicated
inside it. After that activity ceases and splashscreen disappears, the main
window does not appear and the software seems to hang (no CPU usage).
I've compiled wine 3.20 (git rev-parse HEAD :
488432317206bc816432af0dd740e18979e37e58) within pure 32-bit install of ubuntu
14.04 server edition on KVM virtual machine. I've used "./configure
--disable-win16 --prefix=/home/lvd/wine". After a (successfull) compile, I've
copied wine directory to my real machine (64bit install of the same ubuntu
14.04) and after preparations ( cd /home/lvd, export
$WINEPREFIX=/home/lvd/.wine32, export $WINEARCH=win32, wine/bin/winecfg ) run
install:
wine/bin/wine start 'H:\AltiumInstaller.exe' where H: was automatically
configured by winecfg to /mnt/cdrom where .iso was mounted.
then run the software:
wine/bin/wine start 'C:\Program Files\Altium\AD13\DXP.EXE'
and after splashscreen and loading activity the hang happens.
short (default) log, the log made with "WINEDEBUG=+relay,+seh,+tid
wine/bin/wine start 'C:\Program Files\Altium\AD13\DXP.EXE'
>/tmp/wine_longlog.txt 2>&1" and backtrace made with "winedbg \ bt all" after
the hang are attached.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30901
Bug #: 30901
Summary: [PunkBuster && 64Bits Prefix]Assassin's Creed
Multiplayer does not works
Product: Wine
Version: 1.5.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: berillions(a)gmail.com
Classification: Unclassified
Since i create the hack to pass the Ubisoft Game Launcher properly, it's
possible to play at the recent Ubisoft's games like AC : Revelations without a
crack.
Actually, i try to play at this game in 2 prefix (the first is a 32Bits prefix
and the second is a 64Bits prefix)
32Bits Prefix :
There are no problems, the game works correctly in Soloplayer mode and
Multiplayer. For this second point, it's great because the Multiplayer use
Punkbuster.
64Bits Prefix :
It's in this prefix that i have the problem. The Soloplayer mode works
perfectly but impossible to join a session in the Multiplayer Mode. I'm always
kicked by Punkbuster.
PnkBstrA and PnkBstrB services are the problems :
1- When i launch game in the 32Bits Prefix, these services are launched
automatically without problem. They appear in my process list so the
multiplayer works fine.
2- But, when i launch the game in my 64Bits prefix, these services are not
launched so it's impossible to launch a multiplayer session.
When i launch "winecfg" in the 64Bits prefix, i have this fixme in my console :
Code:
fixme:service:scmdatabase_autostart_services Auto-start service L"PnkBstrA"
failed to start: 2
I haven't this message in my 32Bits prefix because PnkBstrA.exe/PnkBstrB.exe
services are launched
Thanks
--
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=36065
Bug ID: 36065
Summary: PunkBuster service tests fail (DeleteService should
mark active services in SCM database as pending for
deletion)
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
although not really a problem because of the state of PunkBuster (bug 9685) it
still highlights a Wine bug.
PunkBuster service components test tool:
http://www.evenbalance.com/index.php?page=pbsvcfaq.php
--- snip ---
...
Checking PnkBstrK driver status NOT FOUND
Extracting new PnkBstrK to:
"C:\users\focht\Application Data\PnkBstrK.sys"
OK
Sending load packet to PnkBstrB SENT
Checking PnkBstrK driver status NOT FOUND
Manually stopping PnkBstrB FAILED - no handle
--- snip ---
Relevant part of trace log:
--- snip ---
$ WINEDEBUG=+tid,+seh,+loaddll,+service,+relay wine ./pbsvc.exe >>log.txt 2>&1
...
0044:Call advapi32.CreateServiceA(00135c48,0041e168 "PnkBstrK",0041e168
"PnkBstrK",000f01ff,00000001,00000003,00000001,0041b000
"C:\\windows\\system32\\drivers\\PnkBstrK.sys",00000000,00000000,00000000,00000000,00000000)
ret=004078e5
0044:trace:service:CreateServiceA 0x135c48 "PnkBstrK" "PnkBstrK"
0044:trace:service:CreateServiceW 0x135c48 L"PnkBstrK" L"PnkBstrK"
...
0016:trace:service:svcctl_CreateServiceW (L"PnkBstrK", L"PnkBstrK", 0xf01ff,
L"C:\\windows\\system32\\drivers\\PnkBstrK.sys")
...
0016:Call advapi32.RegCreateKeyW(00000024,00119aa0 L"PnkBstrK",0084e4a8)
ret=7edeb767
0016:Ret advapi32.RegCreateKeyW() retval=00000000 ret=7edeb767
0016:Call advapi32.RegSetValueExW(00000130,7edf93c4
L"DisplayName",00000000,00000001,0011a890,00000012) ret=7edeb689
0016:Ret advapi32.RegSetValueExW() retval=00000000 ret=7edeb689
...
0016:trace:service:scmdatabase_add_service 0x11a950
...
0044:Ret advapi32.CreateServiceA() retval=001f6108 ret=004078e5
0044:Call advapi32.CloseServiceHandle(001f6108) ret=004078f8
0044:trace:service:CloseServiceHandle 0x1f6108
...
0044:Ret advapi32.OpenServiceA() retval=001f55c8 ret=00407901
0044:Call advapi32.StartServiceA(001f55c8,00000000,00000000) ret=0040793b
0044:trace:service:StartServiceA (0x1f55c8,0,(nil))
0044:trace:service:StartServiceW 0x1f55c8 0 (nil)
...
0042:trace:service:svcctl_StartServiceW (0x118d38, 0, (nil))
...
0042:Call KERNEL32.CreateProcessW(00000000,001191a0
L"C:\\windows\\system32\\winedevice.exe
PnkBstrK",00000000,00000000,00000000,00000400,00540000,00000000,00c4e4c8,00c4e50c)
ret=7edece8f
...
000d:Call KERNEL32.__wine_kernel_init() ret=7bc5a402
...
0042:Ret KERNEL32.CreateProcessW() retval=00000001 ret=7edece8f
...
0042:trace:service:service_send_start_message L"PnkBstrK" (nil) 0
...
000d:trace:service:service_run_main_thread Starting 1 services running as
process 71
...
0025:trace:service:service_control_dispatcher got request 1 for service
L"PnkBstrK"
0025:trace:service:SERV_OpenServiceW 0x119790 L"PnkBstrK" 32768
...
0025:trace:service:SERV_OpenServiceW returning 0x11ac48
0025:trace:service:service_handle_start L"PnkBstrK" argsize 10
...
0034:Call advapi32.RegisterServiceCtrlHandlerExW(00115292
L"PnkBstrK",7edfc61f,00000000) ret=7edfc86c
0034:trace:service:RegisterServiceCtrlHandlerExW L"PnkBstrK" 0x7edfc61f (nil)
0034:Ret advapi32.RegisterServiceCtrlHandlerExW() retval=0011a918 ret=7edfc86c
0034:Call advapi32.SetServiceStatus(0011a918,0053e97c) ret=7edfc8c9
0042:trace:service:service_wait_for_startup 0x11a950
0034:trace:service:SetServiceStatus 0x11a918 30 2 0 0 0 0 2710
...
0016:trace:service:svcctl_SetServiceStatus (0x11aed8, 0x11adc4)
...
0044:Ret advapi32.StartServiceA() retval=00000001 ret=0040793b
...
0034:Call driver init 0x100033c0
(obj=0x7edff4c0,str=L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\PnkBstrK")
...
0034:Call advapi32.SetServiceStatus(0011a918,0053e97c) ret=7edfc8f8
0034:trace:service:SetServiceStatus 0x11a918 30 4 5 0 0 0 2710
...
0044:Call advapi32.DeleteService(00137f70) ret=00407549
0044:trace:service:DeleteService (0x137f70)
...
0016:trace:service:scmdatabase_remove_service 0x11a950
0016:Call advapi32.RegDeleteTreeW(00000024,00119aa0 L"PnkBstrK") ret=7edebbce
0016:Ret advapi32.RegDeleteTreeW() retval=00000000 ret=7edebbce
...
0044:Ret advapi32.DeleteService() retval=00000001 ret=00407549
...
0043:Call advapi32.OpenServiceA(00137f20,0041e168 "PnkBstrK",000f01ff)
ret=00407510
0043:trace:service:OpenServiceA 0x137f20 "PnkBstrK" 983551
0043:trace:service:SERV_OpenServiceW 0x137f20 L"PnkBstrK" 983551
...
0016:trace:service:svcctl_OpenServiceW (L"PnkBstrK", 0xf01ff)
...
0043:trace:service:SERV_OpenServiceW returning (nil)
...
0043:Ret advapi32.OpenServiceA() retval=00000000 ret=00407510
...
--- snip ---
The tool extracts, installs and starts the kernel service.
Meanwhile, the tool issues a request to mark the service for deletion - kind of
"auto-cleanup".
After that it starts polling of the service status to check if the service is
actually running (it is).
The problem: Wine doesn't implement the deferred deletion of active services
and removes the service entry while the service is alive (state 'running').
All subsequent service lookup/status requests fail because the entry is now
missing from database.
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms682562%28v=vs.85%…
--- quote ---
DeleteService function
Marks the specified service for deletion from the service control manager
database.
...
The DeleteService function marks a service for deletion from the service
control manager database. The database entry is not removed until all open
handles to the service have been closed by calls to the CloseServiceHandle
function, and the service is not running. A running service is stopped by a
call to the ControlService function with the SERVICE_CONTROL_STOP control code.
If the service cannot be stopped, the database entry is removed when the system
is restarted.
--- quote ---
While you're at it ... please add a TRACE to DeleteService():
http://source.winehq.org/git/wine.git/blob/929d9fb9f79b9ba0b7392215e51a152e…
I used the 'service' debug channel first and lost some time because I didn't
see the the service deletion part (it's only visible if one uses the heavy
relay gun).
This would be consistent with other TRACE messages for service API.
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=26998
Summary: Football manager just start process sometimes
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jakob(a)knugen.nu
Sometimes when i start the game trough steam only a process named fm.exe and i
need to kill it and restart the game a couple of time to get it to start.
--
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=23995
Summary: FM2010 Fails to start every time.
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: admin(a)pokemonger.com
FM2010 (Demo Download - http://www.gamershell.com/download_52136.shtml ) Fails
to start every time, it stalls, I have progressed all the way back to 1.1.31
(didnt run at all on 1.0) to try and do a regression test, but I cant find a
version of wine that the game starts each and every time on.
It does start in the end, but it can take multiple attempts.
This has been tested on Debian and Ubuntu, I have tried as I said regression
testing but I just dont know where to start with the fact I cant find a version
of wine that does not have this issue.
--
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=37255
Bug ID: 37255
Summary: Proteus 8 Access violation in module 'VGDVC.DLL'
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yonatan.el.amigo(a)gmail.com
When you try to use the modules and ISIS.DLL ARES.DLL this error appears
"Internal Exception: Access violation in module 'VGDVC.DLL' [00010C56]".
This happens from Wine1.7.20 (1.7.19 - 1.7.20).
Debugging log files:
Wine1.7.19 ->
http://www.mediafire.com/download/acbxqxxgzpwfvx3/Wine-log1.7.19.txt
Wine1.7.20 ->
http://www.mediafire.com/download/49b0nx751c09iaf/Wine-log1.7.20.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=38399
Bug ID: 38399
Summary: Voobly fails to connect to lobby (regression)
Product: Wine
Version: 1.7.40
Hardware: x86
URL: http://www.voobly.com/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: michael(a)fds-team.de
CC: 00cpxxx(a)gmail.com
Regression SHA1: b2556a2c34f36c0c82f028dbf24acb1ed77cce29
Distribution: ---
Created attachment 51252
--> https://bugs.winehq.org/attachment.cgi?id=51252
+winsock log
Voobly fails to connect to a lobby and instead prints the following error
message with 1.7.40 (while it works with 1.7.39):
"Network Connection Error [Code: 10000005]. Connection errors are typically
caused by a temporary server outage, a firewall, or a problem with your
internet connection. If it's been a long time since you've connected to Voobly
it's recommended that you redownload the client from the website."
In order to reproduce the issue: start Voobly, login into your account and
double click on any lobby (for example "Age of Empires -> Babylon"). The game
itself is not necessary to trigger this problem.
A bisect results in the following patch:
------
commit b2556a2c34f36c0c82f028dbf24acb1ed77cce29
Author: Bruno Jesus <00cpxxx(a)gmail.com>
Date: Sun Mar 29 00:53:43 2015 -0300
ws2_32: Ensure sockets in exceptfds get set when an error occurs.
------
The bug is still present in the current git version and is therefore not a
duplicate of bug 38372.
--
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=39423
Bug ID: 39423
Summary: Voobly: 'Game Browser' can't display content due to
Wine built-in browser signature blacklisted on
www.voobly.com ('win32' feature token must not be
included in user agent string)
Product: Wine
Version: 1.7.52
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: urlmon
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
I split this "unrelated" issue out of bug 39408
It's the one that most Voobly users complain about if you search the Internet
and I provide a solution for it.
The 'Game browser' functionality is only available *after* you have logged in.
Without active login/session, clicking the menu item does *nothing* by design.
This shouldn't even work on Windows - I've debugged the QT4 event handler/state
for the menu item.
With active login the game browser window is opened and displays a list of
games at right hand side.
The embedded browser window displays an error page due to Wine's built-in user
agent signature filtered/blacklisted on server side.
--- snip ---
Error 1010 Ray ID: 23320ccc1af12354 • 2015-10-10 11:40:21 UTC
Access denied
What happened?
The owner of this website (www.voobly.com) has banned your access based on your
browser's signature (23320ccc1af12354-fie4).
CloudFlare Ray ID: 23320ccc1af12354 • Your IP: aa.bb.cc.dd • Performance &
security by CloudFlare
--- snip ---
Wireshark:
--- snip ---
POST /client/login HTTP/1.1
Accept: */*
Host: www.voobly.com
Content-Length: 70
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Win32;
Trident/5.0)
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
clientsession=foo&uid=bar&url=/homeHTTP/1.1 403 Forbidden
...
--- snip ---
Also mentioned here: http://www.voobly.com/forum/thread/225774
Internet Explorer User Agent Strings:
http://www.useragentstring.com/pages/Internet%20Explorer/
Specifically Internet Explorer 8.0:
--- quote ---
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.4;
InfoPath.2; SV1; .NET CLR 3.3.69573; WOW64; en-US)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; WOW64;
Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729;
.NET CLR 1.0.3705; .NET CLR 1.1.4322)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; InfoPath.1;
SV1; .NET CLR 3.8.36217; WOW64; en-US)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; .NET CLR
2.7.58687; SLCC2; Media Center PC 5.0; Zune 3.4; Tablet PC 3.6; InfoPath.3)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media
Center PC 4.0; SLCC1; .NET CLR 3.0.04320)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET
CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2;
SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR
1.1.4322; .NET CLR 2.0.50727)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; SLCC1; .NET CLR
1.1.4322)
Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0; InfoPath.1;
SV1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30)
Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/4.0; FBSMTWB;
.NET CLR 2.0.34861; .NET CLR 3.0.3746.3218; .NET CLR 3.5.33652; msn
OptimizedIE8;ENUS)
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET
CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)
...
--- quote ---
I wrote a small script which tries all kinds of user-agent combinations and
checks for '403 Forbidden' response
Essentially something like this:
--- snip ---
$ wget --header="Accept: text/html" --user-agent=foo
www.voobly.com/client/login
--- snip ---
Guess what ... it's neither the version nor the platform token - but the
'win32' feature token!
The tokens for 64-bit platforms are accepted or probably not recognized.
The 'win32' token is also absent from the comprehensive list here:
http://www.useragentstring.com/pages/Internet%20Explorer/
My guess would be that users who are now complaining about this, previously
used a 64-bit WINEPREFIX (default) without knowing it (= works) and now
recreated a 32-bit prefix ('WINEARCH=win32').
In future there might be support added to change/fake Wine's built-in user
agent to specific values via registry.
The risk of breakage should be put to the end user -> "you have to deal with
all consequences if you change/do that".
MSDN: https://msdn.microsoft.com/en-us/library/ms537503%28VS.85%29.aspx
("Understanding user-agent strings")
--- quote ---
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Windows
CurrentVersion
Internet Settings
User Agent
Pre Platform
Token = Value
Post Platform
Token = Value
...
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Windows
CurrentVersion
Internet Settings
5.0
User Agent
(default) = "Mozilla/4.0"
Compatible = "compatible"
Platform = "Windows NT 5.1"
Version = "MSIE 6.0"
Pre Platform
Token = Value
Post Platform
Token = Value
--- quote ---
$ sha1sum voobly-v2.2.4.38.exe
bf94f42b1a82f797a5578c722ebdf4f5a18b10ab voobly-v2.2.4.38.exe
$ du -sh voobly-v2.2.4.38.exe
11M voobly-v2.2.4.38.exe
$ wine --version
wine-1.7.52-190-gd548639
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39408
Bug ID: 39408
Summary: Voobly: 'Game Browser' does not open
Product: Wine
Version: 1.7.52
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: oli(a)jetzweb.de
Distribution: ArchLinux
Created attachment 52525
--> https://bugs.winehq.org/attachment.cgi?id=52525
Terminal output of wine
If you start Voobly, login and click 'Game Browser' in the menu, it does not
open anymore, and therefore, the whole program becomes useless.
The developers of Voobly told me that the problem might be connected to the
fact that they switched the ingame browser (which is used in 'Game Browser')
from ie7 to ie8 in the latest update. However, I couldn't solve the probelm by
installing ie8 and dotnet packages with winetricks.
The problem appears both in staging and normal versions, as well as in the
recent (1.7.52) and in older wine versions. With older Voobly versions it
worked without problems.
Voobly can be downloaded here:
http://www.voobly.com/updates/voobly-v2.2.4.38.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29204
Bug #: 29204
Summary: the dib text rendering breaks text in d3d
Product: Wine
Version: 1.3.33
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hramrach(a)gmail.com
Classification: Unclassified
Regression SHA1: e9612c1af06d09dbf03745535288575e05cacb56
Created attachment 37703
--> http://bugs.winehq.org/attachment.cgi?id=37703
examples of text rendering
the gdi32 change that adds dib text rendering
6a629710ce02012defed1cfa30f8c3c91298ab99 -
d43d17e24857fafcb7964c91d8a7a05520964df3
breaks text rendering in d3d
Attaching pieces of text cut from some screenshots.
--
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=38368
Bug ID: 38368
Summary: AutoPatcher Updater 1.4.x (VB6 app) reports 'Error:
Object doesn't support this action' (needs
ITextStream::Close method implementation)
Product: Wine
Version: 1.7.40
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: scrrun
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
found during validation of bug 38364
Not really a blocker but dismissing a message box each time the method stub is
called is annoying.
Prerequisite: 'winetricks -q vb6run'
--- snip ---
...
0024:fixme:scrrun:textstream_Close (0x1f4758): stub
...
0024:Call KERNEL32.RaiseException(c000008f,00000001,00000002,0033eae0)
ret=660d0956
0024:trace:seh:raise_exception code=c000008f flags=1 addr=0x7b83b64b
ip=7b83b64b tid=0024
0024:trace:seh:raise_exception info[0]=deadcafe
0024:trace:seh:raise_exception info[1]=deadcafe
0024:trace:seh:raise_exception eax=7b8272ad ebx=7b8c1000 ecx=deadcafe
edx=0033ea3c esi=0033eae0 edi=0033eaa0
0024:trace:seh:raise_exception ebp=0033ea78 esp=0033ea14 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000283
0024:trace:seh:call_stack_handlers calling handler at 0x409926 code=c000008f
flags=1
...
0024:Call oleaut32.VarBstrCat(001f712c L"APUP Has Started\r\nVersion:
1.4.43\r\n\r\nOperating System: English (1033) Windows XP Professional Service
Pack 3\r\nCurrent Locale: English - United States / Non-Unicode Default:
English - United States\r\nStarting APUP From:
Z:\\home\\focht\\Downloads\r\nDate & Time: 06-Apr-2015 18:55 UTC Offset:
"...,001f6dd4 L"Error: Object doesn't support this action\r\nIn
mdlGeneral.fileToString At Line 112",0033ea74) ret=660e5f4d
...
0024:Call KERNEL32.WideCharToMultiByte(00000000,00000000,001f3ca4 L"Application
Error",ffffffff,009a46e8,00000022,00000000,00000000) ret=660711c4
0024:Ret KERNEL32.WideCharToMultiByte() retval=00000012 ret=660711c4
...
0024:Call user32.MessageBoxIndirectA(0033e9ec) ret=6606f73f
...
--- snip ---
Source:
https://source.winehq.org/git/wine.git/blob/533323d70397a53a2ce5002dc2038bc…
--- snip ---
633 static HRESULT WINAPI textstream_Close(ITextStream *iface)
634 {
635 struct textstream *This = impl_from_ITextStream(iface);
636 FIXME("(%p): stub\n", This);
637 return E_NOTIMPL;
638 }
--- snip ---
$ sha1sum Apup_1_4_43.zip
3c5694b5dee56bafbc4f528b37ef52eeed68a883 Apup_1_4_43.zip
$ du -sh Apup_1_4_43.zip
2.3M Apup_1_4_43.zip
$ wine --version
wine-1.7.40-29-gc1c108f
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38364
Bug ID: 38364
Summary: AutoPatcher Updater fails due to missing COM
interfaces
Product: Wine
Version: 1.7.38
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gerbilsoft(a)gerbilsoft.com
Distribution: ---
Created attachment 51207
--> https://bugs.winehq.org/attachment.cgi?id=51207
Console output for AutoPatcher
Attempting to use the AutoPatcher Updater on Wine results in numerous COM
errors due to unimplemented interfaces.
AutoPatcher is available for download at: http://www.autopatcher.net/forum/
On startup, it shows the following messages:
Object doesn't support this action
In mdlInitialization.initFolders At Line 108
Object variable or With block variable not set
In mdlInitialization.initFolders At Line 108
Object variable or With block variable not set
In mdlInitialization.initFolders At Line 108
Console output shows several unsupported COM interfaces:
- {7fd52380-4e07-101b-ae2d-08002b2ec713}: IPersistStreamInit
- {37d84f60-42cb-11ce-8135-00aa004bb851}: IPersistPropertyBag
- {df0b3d60-548f-101b-8e65-08002b2bd119}: ISupportErrorInfo
--
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=44817
Bug ID: 44817
Summary: Some software protection schemes need
ntdll.NtSetLdtEntries implementation
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-NtSe…
The stub was added with bug 26268 ("Multiple applications need
ntdll.ZwSetLdtEntries stub (kwiksupport.me, Ragnarok Online patcher)").
Unfortunately there is no further information/details *which* copy-protection
scheme needs and actual implementation.
No applications/games are mentioned.
--- quote ---
1. Some copy protections call NtSetLdtEntries(0x000f) and then with 'retf'
instruction jump to that selector expecting that it works (the tests show that
NtSetLdtEntries(0x000f,0x001f) should succeed). In order to make this work a
limitation to set only selectors > LDT_FIRST_ENTRY (512) in
wine_ldt_set_entry()
was removed.
2. wine_ldt_set_entry() was made to always mark modified selector entries as
WINE_LDT_FLAGS_ALLOCATED, otherwise get_selector_entry() server call returns
entries without that flag set and
NtQueryInformationThread(ThreadDescriptorTableEntry)
fails.
--- quote ---
$ 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.
https://bugs.winehq.org/show_bug.cgi?id=39777
Bug ID: 39777
Summary: cannot run some of Themida & WinLicense protection
software
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gamiljydcome(a)gmail.com
Distribution: ---
Created attachment 53070
--> https://bugs.winehq.org/attachment.cgi?id=53070
Themida & WinLicense protection, can not run
Some of Themida & WinLicense protection software cannot be run, wine auto exit.
But some of Themida & WinLicense protection software runs fine.
--
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=44011
Bug ID: 44011
Summary: page fault in schan_QueryContextAttributesW
Product: Wine
Version: 2.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: secur32
Assignee: wine-bugs(a)winehq.org
Reporter: development(a)winomega.com
Distribution: ---
Created attachment 59672
--> https://bugs.winehq.org/attachment.cgi?id=59672
test program
Wine gets a page fault in secur32.dll very often (thought not 100% of the time)
when running a trivial program using libmariadb.dll (MariaDB Connector/C
3.0.2):
a2b008591f3cb238d1e4410c4d1b9f08 libmariadb.dll
Note: libmariadb.dll (MariaDB Connector/C 3.0.2) can be downloaded as win32
binary or source from https://downloads.mariadb.org/connector-c/3.0.2/
Test program is attached (test.c). You need to edit and replace the
mysql_real_connect call with actual parameters of a MySQL server with SSL
enabled, and copy the ca.pem file to current directory (a trivial setup like
https://www.digitalocean.com/community/tutorials/how-to-configure-ssl-tls-f…
works).
I compiled it with mingw32:
i686-w64-mingw32-gcc test.c -o test.exe -I./mariadb-connector-c/include
libmariadb.dll
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38123
Bug ID: 38123
Summary: OneNote 2013 crashes on running setup.exe
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: danikvassin(a)gmail.com
Distribution: ---
Created attachment 50810
--> https://bugs.winehq.org/attachment.cgi?id=50810
One Note Backtrace
OneNote 2013 fails to even begin installation of the program
--
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=47272
Bug ID: 47272
Summary: Regression on Age of Empires 2 HD - Age of Kings
Crashes with wine 4.9, works fine with 4.8
Product: Wine
Version: 4.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mohr.christoph(a)gmail.com
Distribution: ---
Created attachment 64568
--> https://bugs.winehq.org/attachment.cgi?id=64568
Crash report
After updating to wine 4.9 Age of Empires 2 HD - Age of Kings crashes. It
worked fine with wine 4.8, after downgrading it works agin.
I am on Arch Linux, latest updates.
See crash report in attached 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=44805
Bug ID: 44805
Summary: Qupzilla 32 bits version crash
Product: Wine-staging
Version: 3.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: elr(a)disroot.org
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 60843
--> https://bugs.winehq.org/attachment.cgi?id=60843
backtrace of qupzilla
It occurs when i am loading some webpages.
--
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=30814
Bug #: 30814
Summary: Age of Empires II scrolling gets stuck after Alt-Tab
away and back
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nemesis(a)icequake.net
Classification: Unclassified
Wine 1.2 did not have this problem but was much slower.
Wine 1.5.5 is much faster and just a much better overall experience with this
one caveat.
If you start a game and immediately alt-tab away and back, nothing is amiss.
You can even click on some things onscreen and there is no problem.
However, once you have scrolled the screen either by moving the mouse towards
the edges, or by using the arrow keys on the keyboard, if you alt-tab away and
back, upon returning the screen will immediately begin to scroll in an
apparently random direction and cannot be stopped.
I did the WINEDEBUG="+cursor,+dinput,+ddraw" winedbg Age2_x1/age2_x1.exe and
did not come up with anything obviously wrong while the problem was occurring.
A lot of this kind of stuff:
trace:ddraw:surface_lock locked surface returning description :
trace:ddraw:DDRAW_dump_members - DDSD_CAPS : DDSCAPS_OFFSCREENPLAIN
DDSCAPS_VIDEOMEMORY DDSCAPS_LOCALVIDMEM
trace:ddraw:DDRAW_dump_members - DDSD_HEIGHT : 768
trace:ddraw:DDRAW_dump_members - DDSD_WIDTH : 1024
trace:ddraw:DDRAW_dump_members - DDSD_PITCH : 1024
trace:ddraw:DDRAW_dump_members - DDSD_PIXELFORMAT : ( DDPF_PALETTEINDEXED8
DDPF_RGB , RGB bits: 8, R 00 G 00 B 00)
trace:ddraw:ddraw_surface1_Unlock iface 0xa2f01a8, data 0xbf44020.
trace:ddraw:ddraw_surface7_Unlock iface 0xa2f0198, rect (null).
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:SetCursor (nil)
trace:ddraw:ddraw_surface1_Blt iface 0xa303ef8, dst_rect (0,0)-(24,32),
src_surface 0xa2f01a8, src_rect (885,649)-(909,681), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_surface7_Blt iface 0xa303ee8, dst_rect (0,0)-(24,32),
src_surface 0xa2f0198, src_rect (885,649)-(909,681), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_surface1_GetClipper iface 0xa2f01a8, clipper 0x33c81c.
trace:ddraw:ddraw_surface7_GetClipper iface 0xa2f0198, clipper 0x33c81c.
trace:ddraw:ddraw_surface1_SetColorKey iface 0xa305188, flags 0x8, color_key
0x33c7f8.
trace:ddraw:ddraw_surface7_SetColorKey iface 0xa305178, flags 0x8, color_key
0x33c7f8.
trace:ddraw:ddraw_surface7_EnumAttachedSurfaces iface 0xa305178, context
0x33c7b8, callback 0x7e72abb0.
trace:ddraw:ddraw_surface7_EnumAttachedSurfaces end of enumeration.
trace:ddraw:ddraw_surface1_BltFast iface 0xa2f01a8, dst_x 885, dst_y 649,
src_surface 0xa305188, src_rect (0,0)-(24,32), flags 0x11.
trace:ddraw:ddraw_surface7_BltFast iface 0xa2f0198, dst_x 885, dst_y 649,
src_surface 0xa305178, src_rect (0,0)-(24,32), flags 0x11.
trace:ddraw:ddraw_surface1_Blt iface 0xa4777f0, dst_rect (0,0)-(1024,768),
src_surface 0xa2f01a8, src_rect (0,0)-(1024,768), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_surface7_Blt iface 0xa4777e0, dst_rect (0,0)-(1024,768),
src_surface 0xa2f0198, src_rect (0,0)-(1024,768), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_clipper_GetClipList iface 0x151748, rect (0,0)-(1024,768),
clip_list (nil), clip_list_size 0x33c7b8.
trace:ddraw:ddraw_clipper_GetClipList iface 0x151748, rect (0,0)-(1024,768),
clip_list 0xa52ab90, clip_list_size 0x33c7b8.
trace:ddraw:ddraw_palette_SetEntries iface 0x143150, flags 0, start 0, count
256, entries 0x9192a0.
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
Let me know what I can do to help debug.
--
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=42368
Bug ID: 42368
Summary: Lichdom: Battlemage crashes while loading when
starting a new game
Product: Wine-staging
Version: 2.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fjfrackiewicz(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 57149
--> https://bugs.winehq.org/attachment.cgi?id=57149
Screenshot just before starting the game
(For the non-Staging bug, please see bug 40428. I hope my submitting this
report to Wine Staging is OK because I can only get this crash while running
the game in Wine Staging 2.0)
When attempting to run Lichdom: Battlemage in Wine Staging 2.0, the game
crashes during the loading screen when starting a new game.
I am attempting to play the game in a WoW64 prefix with vcrun2012 installed by
the game's installer in Windows 7 mode (the game does not support Windows XP)
and I am running the 64-bit binary for the game.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43850
Bug ID: 43850
Summary: Wine error with newest mesa driver
Product: Wine-staging
Version: 2.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bellamorte42(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
fixme:d3d:wined3d_dxtn_init Wine cannot find the txc_dxtn library, DXTn
software support unavailable.
Mesa now incorporates the functionality directly, and the standalone library
conflicts with the driver.
--
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=42324
Bug ID: 42324
Summary: Wine selects wrong OpenGL renderer on macOS
Product: Wine
Version: 2.0-rc6
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: f.platte(a)platte-web.de
Created attachment 57072
--> https://bugs.winehq.org/attachment.cgi?id=57072
example images
I'm using a 13 inch 2012 MacBook Pro with a Thunderbolt eGPU (GTX 750Ti). Due
to macOS limitations the the eGPU can only accelerate the external monitor.
(Some application which support selecting a renderer work on the internal
display. e.g openglex4 [OpenGL Extensions Viewer]). To my knowledge the macOS
applications else always use the renderer driving the screen where they are
launched on. However wine does not respect this behaviour.
I tried running several windows executables like the benchmark tools Valley and
Heaven which keep using the Mac's internal Intel HD4000 graphics although being
used on the external screen. I tried several wine engines from the staging,
stable and development tree, which all are affected. To check wether it might
be an OS related issue I also ran the Mac-native versions of the benchmarks
mentioned above which both worked as expected (using the OpenGL renderer
driving the monitor they are launched on).
This basically breaks games and other GPU heavy windows programs in my case. I
do not know whether hackintoshes are affected as well as they basically are the
only other macOS machines having integrated and dedicated GPU driving different
monitors.
The logical solution seems to be to make wine respect the way macOS assigns
renderer while an ideal solution would be implementing a way to select a
renderer/always default to the dedicated GPU as this would enable accelerating
the internal monitor with the external GPU like it's possible with windows.
--
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=45354
Bug ID: 45354
Summary: BlazBlue Cross Tag Battle crashes before startup
(Unhandled page fault on read access...)
Product: Wine
Version: 3.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: mrniex(a)protonmail.com
Distribution: ---
Created attachment 61650
--> https://bugs.winehq.org/attachment.cgi?id=61650
The whole log of console output and debugger output
BlazBlue Cross Tag Battle crashes before even starting on both latest Wine and
Wine-staging. Changing platforms (32/64) didn't help. Debug trace attached.
Sorry if I misreported anything, I can't make much sense of Wine debugs.
--
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=44350
Bug ID: 44350
Summary: Wolfenstein The Old Blood used to work before last
kernel's update.
Product: Wine-staging
Version: 2.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukasbownik99(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 60237
--> https://bugs.winehq.org/attachment.cgi?id=60237
Full backtrace of a problem.
Wolfenstien The Old Blood worked perfectly until I updated kernel to the newest
version which contains the patch for Meltdown. My distro: Linux Mint 18.3.
GPU Driver: 384 for nVidia GeForce GTX 970.
--
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=30940
Bug #: 30940
Summary: Could not start Tween.exe using wine-mono
Product: Wine
Version: 1.5.6
Platform: x86
URL: http://sourceforge.jp/projects/tween
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felixonmars(a)gmail.com
CC: fracting(a)gmail.com
Classification: Unclassified
0. Software Download:
http://sourceforge.jp/projects/tween/releases/
It's free and open-source.
1. How to reproduce:
$ wine Tween.exe
2. Result:
Unhandled Exception: System.InvalidOperationException:
WinForms_SeeInnerExceptio
n ---> System.TypeInitializationException: An exception was thrown by the type
i
nitializer for Tween.AppendSettingDialog ---> System.OutOfMemoryException: Not
e
nough memory to complete operation [GDI+ status: OutOfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.My.MyProject+MyForms.Create__Instance__[TweenMain] (Tween.TweenMain
I
nstance) [0x00000] in <filename unknown>:0
at Tween.My.MyProject+MyForms.get_TweenMain () [0x00000] in <filename
unknown>
:0
at Tween.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:
0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun
() [0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(
System.String[] commandLine) [0x00000] in <filename unknown>:0
at Tween.My.MyApplication.Main (System.String[] Args) [0x00000] in <filename
u
nknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidOperationException:
WinForms_Se
eInnerException ---> System.TypeInitializationException: An exception was
thrown
by the type initializer for Tween.AppendSettingDialog --->
System.OutOfMemoryEx
ception: Not enough memory to complete operation [GDI+ status: OutOfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.My.MyProject+MyForms.Create__Instance__[TweenMain] (Tween.TweenMain
I
nstance) [0x00000] in <filename unknown>:0
at Tween.My.MyProject+MyForms.get_TweenMain () [0x00000] in <filename
unknown>
:0
at Tween.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:
0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun
() [0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(
System.String[] commandLine) [0x00000] in <filename unknown>:0
at Tween.My.MyApplication.Main (System.String[] Args) [0x00000] in <filename
u
nknown>:0
Unhandled Exception: System.TypeInitializationException: An exception was
thrown
by the type initializer for Tween.AppendSettingDialog --->
System.OutOfMemoryEx
ception: Not enough memory to complete operation [GDI+ status: OutOfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: An
except
ion was thrown by the type initializer for Tween.AppendSettingDialog --->
System
.OutOfMemoryException: Not enough memory to complete operation [GDI+ status:
Out
OfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>: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=47926
Bug ID: 47926
Summary: VCDS
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jmn(a)jmn.dk
Distribution: ---
Created attachment 65426
--> https://bugs.winehq.org/attachment.cgi?id=65426
Dump file
Hi
VCDS NEZ 17.8 crash with attached file.
Works with Windoes xp
I really need this program to work for adjusting my vW Lupo car
--
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=45496
Bug ID: 45496
Summary: nights of azure 2 game instantly crash after openning.
Product: Wine-staging
Version: 3.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fefuxewabo(a)sfamo.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 61853
--> https://bugs.winehq.org/attachment.cgi?id=61853
backtrace error..
Only tested with Wine-Staging
Game : nights of azure 2 DX11 doesn`t seem to load instantly crash when
starting
--
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.