https://bugs.winehq.org/show_bug.cgi?id=57248
Bug ID: 57248
Summary: Rhinoceros 8.11 installer crashes on start
Product: Wine
Version: 9.18
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Found while testing bug 56703.
Bisected to commit 553204da35ed16e732417541606bb31ed65a768f
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Mon Aug 12 11:22:07 2024 +0200
mshtml: Add support for MSEventObj prototype objects.
--
Do not reply 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=54342
Bug ID: 54342
Summary: ws2_32:sock - test_WSARecv() sometimes fails with "got
apc_count 1." on Windows 7
Product: Wine
Version: 8.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: jinoh.kang.kr(a)gmail.com
CC: fgouget(a)codeweavers.com
Distribution: ---
test_WSARecv() sometimes fails with "got apc_count 1." on w7u_adm.
--
Do not reply 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=53405
Bug ID: 53405
Summary: Into The Breach freezes when enabling fullscreen
Product: Wine
Version: 7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tinozzo123(a)tutanota.com
Distribution: ---
Created attachment 72796
--> https://bugs.winehq.org/attachment.cgi?id=72796
Wine logs
The Windows version of the game Into The Breach freezes when enabling
fullscreen in the game settings, and the only way to exit the game is to kill
the process.
The freeze does not happen if the game is started with fullscreen already on
(by changing it on the configuration file) or if disabling fullscreen in the
game settings.
(Tested on the Epic Games Store version)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52447
Bug ID: 52447
Summary: Regression: .NET framework 2 installer hangs
Product: Wine
Version: 7.0
Hardware: x86-64
OS: FreeBSD
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: damjan.jov(a)gmail.com
Shortly after Wine 6.11:
winetricks dotnet20
hangs while installing System.Windows.Forms. A git bisect gives:
fed7e7a78b4bea183d0cbb107953e275f17baa4f is the first bad commit
commit fed7e7a78b4bea183d0cbb107953e275f17baa4f
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Jun 21 15:57:26 2021 +0200
ntdll: Simulate a syscall return when starting a thread.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
dlls/ntdll/unix/server.c | 2 +-
dlls/ntdll/unix/signal_arm.c | 65 ++++++++++---------------
dlls/ntdll/unix/signal_arm64.c | 70 +++++++++++----------------
dlls/ntdll/unix/signal_i386.c | 102 ++++++++++++++++++----------------------
dlls/ntdll/unix/signal_x86_64.c | 91 +++++++++++++++--------------------
dlls/ntdll/unix/thread.c | 2 +-
dlls/ntdll/unix/unix_private.h | 2 +-
7 files changed, 138 insertions(+), 196 deletions(-)
--
Do not reply 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=51656
Bug ID: 51656
Summary: Gaea Installer crashes in riched when pressing enter
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
The installer of Gaea (linked) will crash when you click into the EULA editor
and press enter.
--
Do not reply 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=48877
Bug ID: 48877
Summary: [regression] Melodyne crashes when using the Pitch
tool
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: marcan(a)marcansoft.com
Distribution: ---
Created attachment 66814
--> https://bugs.winehq.org/attachment.cgi?id=66814
Partial fix
Tested on git master. Regression was introduced by commit 9bc6f004ce, but that
commit is not the root cause.
The assertion `assert( obj->numRects <= nb_points / 2 );` would fail, but the
code actually crashes earlier due to memory corruption as obj->rects overflows.
In the normal case of nb_points == 0, ET->ymin..ymax are
2147483647..-2147483648, which makes the code iterate over zero scanlines as
ymax < ymin. However, in the crash case, ymin..ymax are -2147483648..378 (note
the negative ymin), so it tries to iterate over two billion scanlines and adds
rects to the obj until it crashes.
This happens because create_polypolygon_region gets passed an insane polygon
with a -2147483648,-2147483648 vertex.
The actual bug is in GdipWidenPath, which produces NaN float points, which get
converted to that insane int after rounding.
And this happens because Melodyne is passing in a degenerate path with the
first two points at the same position (added debugging trace to dump the path
points):
format: "index: [type] X, Y"
00df:err:gdiplus:GdipWidenPath 0: [0] 4.000000, 4.000946
00df:err:gdiplus:GdipWidenPath 1: [1] 4.000000, 4.000946
00df:err:gdiplus:GdipWidenPath 2: [3] 4.000000, 4.000946
00df:err:gdiplus:GdipWidenPath 3: [3] 4.000000, 4.000000
00df:err:gdiplus:GdipWidenPath 4: [3] 4.000000, 4.000000
The code goes GdipWidenPath -> widen_open_figure -> widen_cap, where the
segment length is computed as 0 and it ends up dividing by zero.
I'm not sure what Windows does here. add_bevel_point handles the special case
by just placing a point coincident with the path, ignoring the pen width.
The attached patch generalizes that to widen_cap as a whole. It fixes the
Melodyne crash for me, but I'm not sure if it's the correct behavior, and
degenerate segments will probably cause problems in other code paths (e.g.
add_anchor seems to have the same bug). Maybe a better solution would be to
just remove coincident points from the path before widening (being careful of
cases where the path ends up with one point after this). Someone with more
experience with the GDI code should look at this, and perhaps test it on
Windows to see how it behaves.
--
Do not reply 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=57568
Bug ID: 57568
Summary: Arcanum (and many other titles) crashes on start
Product: Wine
Version: unspecified
Hardware: x86-64
URL: https://www.moddb.com/games/arcanum/downloads/arcanum-
of-steamworks-and-magick-obscura-demo
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: dinput
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: rbernon(a)codeweavers.com
Regression SHA1: e97e39c69e9ffc312e0288fd82acd057ba2e1f3f
Distribution: ArchLinux
Created attachment 77666
--> https://bugs.winehq.org/attachment.cgi?id=77666
terminal output
Multiple games are crashing on start due to commit
e97e39c69e9ffc312e0288fd82acd057ba2e1f3f
dinput: Copy the device format if the user format is a subset of it.
Reverting the commit fixes the problem for me.
Arcanum: Of Steamworks and Magick Obscura demo:
https://www.moddb.com/games/arcanum/downloads/arcanum-of-steamworks-and-mag…
wine-10.0-rc2-37-g027c2abe1ce
--
Do not reply 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=56533
Bug ID: 56533
Summary: Final Fantasy XI Online: Incorrect/corrupt textures
shown on models.
Product: Wine
Version: 9.5
Hardware: x86-64
URL: https://web.archive.org/web/20210810150839/http://www.
playonline.com/ff11eu/download/media/install_win.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: chiitoo(a)gentoo.org
Regression SHA1: 6e619d98a3051d836ae99e911f1d32e5a307acbc
Distribution: Gentoo
After 6e619d98a30 [1], some in-game models of Final Fantasy XI Online are
incorrect, depending on the camera/view angle.
I /think/ the incorrect textures shown /might/ be models from some other
location, actually, and not just broken textures, but I'm not entirely sure at
this time.
I can prepare screenshots/videos in case they might be helpful.
Thank you!
1.
https://source.winehq.org/git/wine.git/commitdiff/6e619d98a3051d836ae99e911…
--
Do not reply 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=56531
Bug ID: 56531
Summary: Final Fantasy XI Online: Some textures are
transparent, malformed, or misplaced.
Product: Wine
Version: 9.0-rc1
Hardware: x86-64
URL: https://web.archive.org/web/20210810150839/http://www.
playonline.com/ff11eu/download/media/install_win.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: chiitoo(a)gentoo.org
Regression SHA1: 5b60f4649b15efb9ef10b63da3ef2c42f8665078
Distribution: Gentoo
After 5b60f4649b1 [1], some graphics are acting weird in Final Fantasy XI
Online.
Some special effects make models transparent at least partially, or
replaced/overlayed(?) with other ones, while for others, it depends just on the
camera/view angle.
I can prepare video/screenshots if that will be of more help than this
description.
Thank you!
1.
https://source.winehq.org/git/wine.git/commitdiff/5b60f4649b15efb9ef10b63da…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.