http://bugs.winehq.org/show_bug.cgi?id=16666
Summary: wine segfaults on launch
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: critical
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=18290)
--> (http://bugs.winehq.org/attachment.cgi?id=18290)
core dump
Now for the biggest bug :-)
Wine segfaults on launch of any program. Even 'wine --version' crashes.
I've got this patch in place (from openbsd's port):
diff --git a/loader/pthread.c b/loader/pthread.c
index 4c0c892..e7f6479 100644
--- a/loader/pthread.c
+++ b/loader/pthread.c
@@ -96,6 +96,12 @@ static void init_thread( struct wine_pthread_thread_info
*info )
/* if base is too large assume it's the top of the stack instead */
if ((char *)info->stack_base > &dummy)
info->stack_base = (char *)info->stack_base - info->stack_size;
+#elif defined(__OpenBSD__)
+ stack_t stack;
+ if (pthread_stackseg_np(pthread_self(), &stack) != 0)
+ abort ();
+ info->stack_base = (char *)stack.ss_sp - stack.ss_size;
+ info->stack_size = stack.ss_size;
#else
/* assume that the stack allocation is page aligned */
char dummy;
@@ -163,6 +169,8 @@ static void init_current_teb( struct
wine_pthread_thread_info *info )
info->pid = getpid();
#ifdef __sun
info->tid = pthread_self(); /* this should return the lwp id on solaris
*/
+#elif defined(__OpenBSD__)
+ info->tid = pthread_self();
#elif defined(__APPLE__)
info->tid = mach_thread_self();
#elif defined(__FreeBSD__)
Though, it still segfaults without it.
wine-pthread.core attached
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42269
Bug ID: 42269
Summary: There is no fonts in the menu S.T.A.L.K.E.R.: Shadow
of Chernobyl
Product: Wine
Version: 2.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: negry.mischa(a)yandex.ru
Distribution: ---
Created attachment 56970
--> https://bugs.winehq.org/attachment.cgi?id=56970
A screenshot of the problem
When you start the game there is no fonts in the menu, same problem in Tropico
5, but in STALKER are the wine versions 1.9.17-1.9.23. And the workspace of
STALKER, as seen in the screenshot is limited
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30600
Bug #: 30600
Summary: Emergency 3 crash with page fault on read access to
0x00000000 in 32-bit code (0x100ac010)
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linuxcobra(a)gmx.de
Classification: Unclassified
Created attachment 40041
--> http://bugs.winehq.org/attachment.cgi?id=40041
Backtrace-output
when i install this Game under wine, the install works, but when i will start
the game, will not work.
via original Windows XP / ME ( both tested) : no problems
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42137
Bug ID: 42137
Summary: DirectInput needs to join both Xbox shoulder triggers
into a single axis (aka half-axis problem)
Product: Wine
Version: 1.6.1
Hardware: x86
OS: Linux
Status: NEW
Keywords: hardware
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
CC: aric(a)codeweavers.com
Distribution: ---
When MS introduced the Xbox controller into dinput it had the idea of joining
both Xbox controller shoulder triggers into a single axis. So the left trigger
ranges to the negative side while the right trigger to the positive side of the
same axis.
Wine currently exposes the triggers are separate axes Z and rZ, this affects
some games negatively because the not-pressed default values for the triggers
is the lowest possible, for example if the axis ranges from -100 to +100 Wine
exposes -100 to the application. The effect is that the application thinks the
axis is always pressed and weird things happen, eg auto selecting Z/rZ as every
button when configuring a joystick or wrongly selecting Z/rZ as rX/rY making
FPS players always look up or down.
I don't know if this happens only for Xbox controllers but I believe so. I'll
have the chance to test with a real PS3 controller soon.
If that is MS only, we need to find a way to distinguish the joysticks
(VID/PID?) and merge the axes to mimic MS behavior.
At the same time and in opposite direction the XInput API does not employ this
hack, since XInput was made for Xbox only controllers it will properly report
the values for the axes separately.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41700
Bug ID: 41700
Summary: "Install Now" and "Customize installation" buttons are
invisible in Python 3.5 installer
Product: Wine
Version: 1.9.23
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
The "Install Now" and "Customize installation" buttons do not appear on either
the regular Python 3.5 installer or the Python 3.5 web installer, not even if
you hover the mouse over the buttons or press the tab key repeatedly. However,
the installation continues if you click where the button should be, and the tab
key appears to move focus onto and off of the buttons even though there is no
visual feedback.
Note that you must set the Windows version to Windows Vista or later in winecfg
or the installer will only show you an error message.
$ sha1sum python-3.5.2.exe
3873deb137833a724be8932e3ce659f93741c20b python-3.5.2.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41317
Bug ID: 41317
Summary: WOLF RPG Editor (Game.exe): Arrow keys don't work
properly when gamepad is connected
Product: Wine
Version: 1.9.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: kakurasan(a)gmail.com
Regression SHA1: c126b21a34be008534e4fbd2a0f8bb8ea08c6c2b
Distribution: ---
Created attachment 55651
--> https://bugs.winehq.org/attachment.cgi?id=55651
Input test program which uses DX Library (source)
When gamepad is connected, the cursor or character moves automatically and
arrow keys doesn't work properly.
Workaround: Disable all gamepads using joy.cpl, or use native dinput.dll
Note: WOLF RPG Editor uses a DirectX wrapper library called "DX Library" (open
source).
Downloads (Japanese):
* WOLF RPG Editor: http://www.silversecond.com/WolfRPGEditor/Download.html
* DX Library: http://dxlib.o.oo7.jp/
----- Result of regression testing -----
c126b21a34be008534e4fbd2a0f8bb8ea08c6c2b is the first bad commit
commit c126b21a34be008534e4fbd2a0f8bb8ea08c6c2b
Author: Andrew Nguyen <anguyen(a)codeweavers.com>
Date: Tue Jul 5 07:19:17 2011 -0500
dinput: Extract the DirectInput instance creation and initialization in
DirectInputCreateEx to separate functions.
:040000 040000 f904caf8d290195557d1c2733d12288d8b4f9cf4
02e3e0e5a1ad1ee2fbb02e91bb09f093766c0e0e 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=47387
Bug ID: 47387
Summary: Victor Vran has no sound
Product: Wine
Version: 4.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: lemonzest(a)gmail.com
Distribution: ---
Hiya
I have the GOG version of Victor Vran, I installed the windows version in both
Wine and Wine Staging versions 4.9/4.10 on Fedora 30 amd64 in both 32bit and
64bit prefixes and none have sound of any kind, I get the following in the logs
for that game
XAudio2Create failed: 800401f0
Any other logs needed just ask.
Many thanks
Lemonzest
--
Do not reply 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=42434
Bug ID: 42434
Summary: Gamepad listed twice
Product: Wine
Version: 2.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: gabriel.corona(a)enst-bretagne.fr
Distribution: ---
Created attachment 57270
--> https://bugs.winehq.org/attachment.cgi?id=57270
Example program enumerating the same device twice.
The gamepads seem to be listed twice by DiectInput.
The problem manifests itself in Lego games (eg. "Lego the Hobbit" and "Lego
Star Wars Episode 7"). The same gamepad is exposed twice and is thus used for
both players: the same gamepad controls both players and it is not possible to
play single player.
A quick workaround is to use `rm /dev/input/js*`.
AFAIU, the problem is that both the /dev/input/eventX and the /dev/input/jsX
device of the gamepad are enumerated. You'll find in attachement a program
which demonstrates the issue:
Thrustmaster Dual Trigger 3-in-1 (event)
({B323044F-0000-0000-0000-504944564944}) -- Thrustmaster Dual Trigger 3-in-1
(event) ({9E573EDA-7734-11D2-8D4A-23903FB6BDF7})
Thrustmaster Dual Trigger 3-in-1 (js)
({B323044F-0000-0000-0000-504944564944}) -- Thrustmaster Dual Trigger 3-in-1
(js) ({9E573ED9-7734-0000-8D4A-23903FB6BDF7})
Using Wine 2.1 on Debian testing with Linux 4.9.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=41080
Bug ID: 41080
Summary: Need For Speed Most Wanted 2005 not working after
upgrade from Ubuntu 14.04 to 16.04
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: naheelazawy(a)gmail.com
Distribution: ---
Created attachment 55265
--> https://bugs.winehq.org/attachment.cgi?id=55265
backtrace
The game was working great on Ubuntu 14.04 but now after upgrading to 16.04 it
just doesn't work. And by the way, I tried various versions of wine and nothing
worked so far.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.