https://bugs.winehq.org/show_bug.cgi?id=42136
Bug ID: 42136
Summary: switching tab in sapi.cpl crashes control
Product: Wine
Version: 2.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fiendishx(a)gmail.com
Distribution: ---
Created attachment 56693
--> https://bugs.winehq.org/attachment.cgi?id=56693
console log
sapi.cpl is installed by the Microsoft Speech SDK installer from
https://download.microsoft.com/download/B/4/3/B4314928-7B71-4336-9DE7-6FA4C…
(or via winetricks)
$ wine control '.wine/drive_c/Program Files (x86)/Common Files/Microsoft
Shared/Speech/sapi.cpl'
brings up the Speech Properties control panel.
Choosing the tab labeled "Text To Speech" crashes the control. Console log
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=48052
Bug ID: 48052
Summary: kernel32:debugger - Wine randomly fails to get the
thread context
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
The kernel32:debugger test randomly fails with a variable number of these
failures:
debugger.c:320: Test failed: GetThreadContext failed: 5
debugger.c:320: Test failed: GetThreadContext failed: 5
debugger.c:320: Test failed: GetThreadContext failed: 5
debugger.c:320: Test failed: GetThreadContext failed: 5
See https://test.winehq.org/data/tests/kernel32:debugger.html
These happen in test_debugger(), when fetch_process_context() tries to get the
context of each thread. In Wine GetThreadContext() randomly fails causing a
variable number of the above messages depending on how many threads are
impacted.
All three Wine builds are impacted. The ERROR_ACCESS_DENIED probably comes from
get_handle_obj() in server/handle.c. Given that this test was added to test a
Wine exception handling race (*), maybe the race is still present?
(*) Based on the commit message for:
commit 42a9b58b066ff374148cee088ac57cfba46e3b76
Author: Jacek Caban <jacek(a)codeweavers.com>
AuthorDate: Mon Aug 26 19:37:20 2019 +0200
kernel32/tests: Add exception handling race test.
Signed-off-by: Jacek Caban <jacek(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
The tests were later enabled on Wine by:
commit 27da4fa4498c3b6e0e46c72a9cdd13b620726e92
Author: Jacek Caban <jacek(a)codeweavers.com>
AuthorDate: Fri Sep 20 16:33:53 2019 +0200
kernel32/tests: Enable debug break exception race tests on i386 Wine.
Signed-off-by: Jacek Caban <jacek(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48556
Bug ID: 48556
Summary: Nascar racers crash at start
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maniikarabera(a)protonmail.ch
Distribution: ---
Created attachment 66370
--> https://bugs.winehq.org/attachment.cgi?id=66370
Crash log with 32 bit prefix
Crashes at start.
--
Do not reply 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=45111
Bug ID: 45111
Summary: Winamp - Milkdrop complains
Product: Wine
Version: 3.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: stu.axon(a)gmail.com
Distribution: ---
Clicking the visualisation tab displays a dialog:
MILKDROP ERROR
Error compiling ps_2_0 warp shader
:127:8:error: syntax error, unexpected KW_TEXTURE
Then you click OK and get another dialog
MILKDROP ERROR
Your hardware says that it supports shader model
3.0 [PSVersion==0x300],
but it doesn't seem to do it properly -
maybe your display is just buggy.
You might want to try updating your display driver
to the latest WHQL driver from the chipset
manufacturer
(NVIDIA, ATI, etc)
Googling for
wine winamp "ps_2_0 warp shader"
Shows the issue going back to at least 2010
Tested on AMD Radeon Vega 8 - on wine 3.7-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=40502
Bug ID: 40502
Summary: Global objects constructors fail when invoking
standard libs
Product: Wine
Version: 1.8.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: mirko.ortensi(a)gmail.com
Distribution: ---
I managed to recompile and link my win32 application but at execution time, it
crashes because of a segmentation fault where memset (or the bare
printf("HELLO")) is invoked in the global object constructor (any call to
standard C library is enough to trigger the crash).
The global object is built in the stack, then it seems that at launch time my
object constructor is called before C Standard Library is ready.
Now, as a workaround I can declare a pointer to global object and instantiate
it in the main (tested, it works)...though...this is something I'd like to
avoid to keep the code as original as possible. Removing the global objects,
everything works like a charm.
As far as I understand, global object constructors are called after Wine
infrastructure is ready to go, though I have doubts now regarding C Standard
Library.
(Please check 8.3.3. Starting a Winelib process
https://www.winehq.org/docs/winedev-guide/x3172)
This code reproduces the error:
#include <stdio.h>
class Printer
{
public:
Printer(){printf("HI\n");}
};
Printer p;
int main(void)
{
return 0;
}
The issue is reproduced by this code linking to msvcrt:
wineg++ -mno-cygwin issue.cpp -o issue
Linking to system libs, this code does not reproduce the issue.
wineg++ issue.cpp -o issue
Now, in my code (pretty big software I am porting to Linux) I still need to
isolate root cause, issue is reproduced even linking against system libraries
(not Wine's msvcrt, then). Anyway, I think there's a bug somewhere when linking
to msvcrt even in this silly piece of code.
--
Do not reply 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=48389
Bug ID: 48389
Summary: Detroit: Become Human has poor performance (use of
unaligned futexes for condition variables on Linux)
Product: Wine
Version: 5.0-rc1
Hardware: x86
OS: Linux
Status: NEW
Keywords: performance
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Depends on: 48291, 48386, 48387
Distribution: ---
Split from bug 48921; see comment 25 there and following.
--
Do not reply 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=29067
Bug #: 29067
Summary: Skyrim crashes during game intro
Product: Wine
Version: 1.3.32
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lt73(a)cs.drexel.edu
Classification: Unclassified
I have gotten Skyrim to load and have been able to start a new game. However
when the intro movie plays it crashes soon after it starts(sometimes before
anything shows on the screen).
Skyrim settings under advanced
Texture High: High
Radical Blur Quality: High
Shadow Quality: High
Decal Quality: None
Water: Reflect everything
I am running Gentoo ~amd64 fully updated with the 3.1 kernel using the latest
NVIDIA drivers.
CPU: Intel i7 Sandybridge 2600K
MEM: 8G
Video: NVIDIA GTX 570
VRAM: 1280M
--
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=38776
Bug ID: 38776
Summary: Readplease/SAPI 4.0 wont load non US Engels Voice
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: j.p.r.anceaux(a)gmail.com
Distribution: ---
After update to wine 1.7.44 i have the problem that the all non Engels Voice
that readplese2003 wont load.
And i get this when i start ReadPlease in site the terminal:
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
L"C:\\windows\\LHSP\\System\\LHSAPI30.DLL"
err:ole:create_server class {5fb67320-bf4b-11d1-af19-444553540000} not
registered
err:ole:CoGetClassObject no class object {5fb67320-bf4b-11d1-af19-444553540000}
could be created for context 0x7
err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
L"C:\\windows\\LHSP\\System\\LHSAPI30.DLL"
err:ole:create_server class {5fb67320-bf4b-11d1-af19-444553540000} not
registered
err:ole:CoGetClassObject no class object {5fb67320-bf4b-11d1-af19-444553540000}
could be created for context 0x7
err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
L"C:\\windows\\LHSP\\System\\LHSAPI30.DLL"
err:ole:create_server class {5fb67320-bf4b-11d1-af19-444553540000} not
registered
err:ole:CoGetClassObject no class object {5fb67320-bf4b-11d1-af19-444553540000}
could be created for context 0x7
err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
L"C:\\windows\\LHSP\\System\\LHSAPI30.DLL"
err:ole:create_server class {5fb67320-bf4b-11d1-af19-444553540000} not
registered
err:ole:CoGetClassObject no class object {5fb67320-bf4b-11d1-af19-444553540000}
could be created for context 0x7
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
Test case:
1. download readplease from the website:
https://sites.google.com/a/readerpal.com/readplease/
(licens code is in clude on the website)
2. download one of all of the fowling files (Microsoft Agent Speech Components)
from: http://htmlbible.com/MicrosoftSpeechComponents/index.htm
lhttsdun.exe
lhttseng.exe
lhttsfrf.exe
lhttsged.exe
lhttsiti.exe
lhttsptb.exe
lhttsspe.exe
3. install ReadPlease
4. one of the all Microsoft Agent Speech Components
5. open ReadPlease Free or ReadPlease Pro
6. if there a flag right under a a pitcher than load the add on voice correct
else you see a rectangle of dots.
--
Do not reply 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=27825
Summary: Super Street Fighter IV AE : Videos won't play
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cleberdemattoscasali-wine(a)yahoo.com.br
I have installed the 32-bit version of gstreamer-plugins and all required
libraries, and still I can't get the videos to play.
Every time the game tries to play a video, I get a:
fixme:gstreamer:GST_Connect Could not make source filter, are
gstreamer-plugins-* installed for 32 bits?
fixme:system:SystemParametersInfoW Unimplemented action: 51 (SPI_SETFILTERKEYS)
--
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=38214
Bug ID: 38214
Summary: Load Game function of Airport Tycoon 3 is broken.
Product: Wine
Version: 0.9.4.
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 2001kraft(a)gmail.com
Created attachment 51005
--> https://bugs.winehq.org/attachment.cgi?id=51005
at3 bug report
Was using Airport Tycoon 3 and running directly using Wine. Then clicked
"Load". Then clicked on one of my saves, the app crashed. Same happens with any
save, meaning that the "Load" function is broken.
--
Do not reply 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=41644
Bug ID: 41644
Summary: Civilization v1.2: crashes on startup
Product: Wine
Version: 1.9.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: K_ThaaL(a)bk.ru
Distribution: ---
Created attachment 56018
--> https://bugs.winehq.org/attachment.cgi?id=56018
trace generated by wine
Wine crashes right after the first frame of game intro is shown.
Created a new 32bit wine prefix for this game.
Tried windows versions XP and 3.1 - behavior is the same in both cases.
Using virtual desktop and disallowing window decorations did not help.
No other options tried.
Ubuntu 16.04 LTS is used with Wine installed from winehq repository.
Problem is detected on 1.9.21 and 1.9.22.
--
Do not reply 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=45391
Bug ID: 45391
Summary: winehq.org is distributing compiled LGPL code packages
but withholding their sources
Product: Packaging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: forestcode(a)ixio.org
CC: michael(a)fds-team.de, sebastian(a)fds-team.de
Distribution: ---
The source code tarballs and package build scripts for winehq's ubuntu and
debian packages are not published. They are not where they are supposed to be
according to the official debian/ubuntu sources.list file (the deb-src entry
that gets created when someone follows the official apt-add-repository
instructions), they don't seem to be referenced anywhere else obvious, and
nobody at the wine project has been forthcoming about how to get them.
[1][2][3]
So, winehq.org is distributing binary packages without making their sources
available. This makes it impossible for the people using those packages to
audit the code, reproduce the packages, test patches on known-good packaged
versions, or port them to different OS releases (the latter leading to issues
like bug 45085).
>From what I can tell, this is also likely an LGPL violation:
"4. You may copy and distribute the Library (or a portion or derivative of it,
under Section 2) in object code or executable form under the terms of Sections
1 and 2 above provided that you accompany it with the complete corresponding
machine-readable source code"
What will it take to remedy this situation?
[1] Notice the absence of an answer in this thread:
https://www.winehq.org/pipermail/wine-devel/2018-May/127507.html
[2] Nobody had an answer for me on the two occasions when I asked on
#winehackers irc this week.
[3] Nobody responded when I emailed the package maintainers listed at
https://wiki.winehq.org/Download
--
Do not reply 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=42908
Bug ID: 42908
Summary: Monopoly (2000) crashes on launch
Product: Wine
Version: 2.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
Created attachment 58049
--> https://bugs.winehq.org/attachment.cgi?id=58049
backtrace
Crashes trying to read 0x0000000. Backtrace 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=45936
Bug ID: 45936
Summary: IW4x crashes on keyboard input
Product: Wine-staging
Version: 3.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: huematrix(a)mailinator.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 62464
--> https://bugs.winehq.org/attachment.cgi?id=62464
Log
Upon pressing a key in IW4x (A Call of Duty: Modern Warfare 2 client), the
program crashes. Full log below.
--
Do not reply 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=48560
Bug ID: 48560
Summary: Default color scheme
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: depositmail(a)mail.ru
Distribution: ---
Created attachment 66374
--> https://bugs.winehq.org/attachment.cgi?id=66374
Breeze color scheme
Good afternoon!
Is it possible to make the default "Breeze" color scheme in Wine?
(Files are attached).
Link to the resource:
https://store.kde.org/p/1259774/
--
Do not reply 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=39415
Bug ID: 39415
Summary: Make configuration settings accessible through the
website
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Currently the way to change a configuration setting is to send a patch to
wine-patches and have Alexandre apply it. This is the case for instance for all
the VM host configuration settings ($MaxRevertingVMs,
$MaxRevertsWhileRunningVMs, etc.), but also $JobPurgeDays, $RegistrationQ, etc.
This is not very practical and prevents experimentation or quickly adjusting
the settings when a problem arises.
Instead these should be stored in a Parameters table and be accessible through
an administrator-only section of the website.
--
Do not reply 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=39416
Bug ID: 39416
Summary: Many settings should be per VM host
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
The following global settings should in fact be customizable on a per VM host
basis:
* $MaxRevertingVMs - Hosts with SSDs may be able to handle multiple reverts in
parallel.
* $MaxRevertsWhileRunningVMs - Again this may depend on disk speed and QEmu
version.
* $MaxActiveVMs - Depends on disk and CPU speed, number of cores, etc.
* $SuiteTimeout & $SingleTimeout - Might need to be adjusted based on the CPU
speed.
* $BuildTimeout & $ReconfigTimeout - Might need to be adjusted based on the CPU
speed. Fortunately we can currently only have one build VM so that's not too
much of an issue.
One way to do so would be to introduce a VMHosts table storing the settings for
each VM host (see the schema attachment of bug 39412). VMs (VMInstances really)
would then be linked to the relevant VM host so to indicate which set of
constraints apply.
Note that this would be different from the handling of the truly global
settings described in bug 39415.
--
Do not reply 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=34666
Bug #: 34666
Summary: In The Adventures Of Lomax some graphic elements
flicker, disappear or are garbled
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
Created attachment 46209
--> http://bugs.winehq.org/attachment.cgi?id=46209
Lomax Log
For example there is no transition between the main game screen and the next
one. I mean, the black screen is displayed instead of a transition.
The screen where you see Lomax and Evil Ed standing next to each other is
garbled.
When you begin the game the text message 'Let's go' flickers. There is also
flickering when you press the space key to change your hat.
The issues can be reproduced in the demo (check out the link).
Tested with:
Windows Vista (without Wine), GeForce 9600M GS--the program works fine here
Ubuntu 13.04, GeForce 9600M GS (NVIDIA driver 313)
--
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=47833
Bug ID: 47833
Summary: FindFirstFileExW seems to be missing
FILE_OPEN_FOR_BACKUP_INTENT flag to NtOpenFile
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: qsniyg(a)mail.com
Distribution: ---
When running USVFS (through ModOrganizer 2), its hooked version of NtOpenFile
checks for the FILE_OPEN_FOR_BACKUP_INTENT flag to see if the function calling
it is FindFirstFileExW.
Under Windows, this apparently works as expected, but wine doesn't pass the
flag, causing USVFS to fail injecting directory listings. Adding the flag
allows USVFS to work properly.
I haven't tested this under windows, so I have no way to verify if the flag
only gets set for some arguments sent to FindFirstFileExW and not others, but
since USVFS has been known to work for many different programs, I would
personally assume that the flag is always set.
--
Do not reply 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=30506
Bug #: 30506
Summary: Text misrendered in Brain Workshop
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
The free matching game Brain Workshop
http://sourceforge.net/projects/brainworkshop/
downloadable from
http://downloads.sourceforge.net/project/brainworkshop/brainworkshop/Brain%…
renders all its "menu" text illegibly.
'winetricks corefonts' doesn't help.
(Yes, there's a Linux version, but that doesn't work on my machine,
so I thought I'd try the Windows version under Wine.)
--
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=41936
Bug ID: 41936
Summary: Regression in The Witcher 2: Assassins of Kings
Product: Wine
Version: 1.9.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: jeff(a)macloue.com
Distribution: ---
Created attachment 56320
--> https://bugs.winehq.org/attachment.cgi?id=56320
Witcher2: Welcome screen - garbled text in menu
Found a possible regression in The Witcher 2: Assassins of Kings game under
Wine: the text is rendered incorrectly in the menus, subtitles, etc. A
screenshot (1920x1080 downscaled 50%) is attached.
Tracked the breakage between 1.9.13 and 1.9.14 (tested a few of 1.9.x series,
the bug is reproduced up to version 1.9.23) and used git bisect to track the
commit which introduced the regression:
beccd5a2e53927137de031c1976e66d35b08afeb is the first bad commit
commit beccd5a2e53927137de031c1976e66d35b08afeb
Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com>
Date: Wed Jun 22 06:00:55 2016 +0000
d3dx9_39: Share the source with d3dx9_36.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com>
Signed-off-by: Matteo Bruni <mbruni(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
:040000 040000 bfecf0f484447414e0b927c99d73c24cf4f695c9
4fbc2c7f69c3217284b8be7ebddad88ed1fdf094 M dlls
:040000 040000 d2bc5924fd8102f1a1aff298f4426050db271fd5
60184108c62c5437f2724096b1cd43f14083eaba M tools
No idea what the exact problem is, I see a batch of commits with the same
description around this one.
The system is Slackware64-14.2+multilib, hardware is Intel Core i7-6700/ASUS
Q170M-C/NVIDIA GeForce GT 730 (with NVIDIA proprietary driver 370.23).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25264
Summary: ExamXML crashes when opening an XML file
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.duelli(a)web.de
There is a 30-day evaluation edition of ExamXML at
http://www.a7soft.com/examxml.html
While the installation and the program start-up went fine, the program
immediately crashes after selecting an XML file for comparison.
The output from the start-up to the crash is:
err:rebar:REBAR_WindowProc unknown msg 2002 wp=00000000 lp=0033f9d8
err:rebar:REBAR_WindowProc unknown msg 2002 wp=00000000 lp=0033fd20
err:rebar:REBAR_MoveChildWindows EndDeferWindowPos returned NULL
fixme:font:WineEngCreateFontInstance Untranslated charset 255
wine: Unhandled page fault on write access to 0x20202024 at address 0x7ef927d9
(thread 0009), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7ef927d9
--
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=48082
Bug ID: 48082
Summary: shell:PathResolveW needed by Visual C++ Express 2005
Product: Wine
Version: 4.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: codespunk+bugzilla.winehq(a)gmail.com
Distribution: ---
Created attachment 65633
--> https://bugs.winehq.org/attachment.cgi?id=65633
Error window
I can't dismiss this dialog because no matter what I enter, I always get this
error telling me that the path is invalid.
This is most likely due to the following stub as reported in the log:
0009:fixme:shell:PathResolveW (L"C:\\users\\mattd\\My Documents\\Visual Studio
2005\\Settings\\C++
Express\\CurrentSettings.vssettings",(nil),0x00000000),stub!
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47615
Bug ID: 47615
Summary: _putws outputs NULs, other wchar.h functions don't
Product: Wine
Version: 3.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: dmo2118(a)gmail.com
Distribution: ---
Created attachment 65041
--> https://bugs.winehq.org/attachment.cgi?id=65041
Test program
This seems inconsistent:
$ i686-w64-mingw32-gcc -Wall -municode -mconsole putws-test.c
$ wine a.exe | hexdump -C
00000000 70 00 75 00 74 00 77 00 73 00 0d 0a 00 66 70 75 |p.u.t.w.s....fpu|
00000010 74 77 73 0d 0a 77 70 72 69 6e 74 66 0d 0a 77 66 |tws..wprintf..wf|
00000020 70 72 69 6e 74 66 0d 0a 63 0d 0a |printf..c..|
0000002b
Expected behavior: "putws" outputs as 70 75 74 77 73, without the 00s in
between.
I concede I am not running up-to-date development Wine. I'm having trouble
installing it, and I don't know how long that would take to fix. Given the
source code I've looked at, I have reason to believe that this still affects
current Wine.
$ wine --version
wine-3.0 (Ubuntu 3.0-1ubuntu1)
$ lsb_release -d
Description: Ubuntu 18.04.3 LTS
--
Do not reply 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=46578
Bug ID: 46578
Summary: IVMU Social Network Client crashes when selecting menu
/ settings
Product: Wine
Version: 4.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bob.mt.wya(a)gmail.com
Distribution: ---
Tested with:
export WINEDEBUG=+wgl,+d3d,+x11drv,+timestamp,+tid
wine IMVUClient.exe &>~/Logs/wine-vanilla-4.0_IVMU_d3d_wgl_x11drv_log.txt
The IMVU Client starts up OK, but crashes immediately the "settings" menu entry
is clicked on. Briefly a settings pane header tab, is seen in the main window.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.