https://bugs.winehq.org/show_bug.cgi?id=56197
Bug ID: 56197
Summary: Blur sometimes crashes:
0024:err:virtual:virtual_setup_exception stack
overflow
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cedric.dewijs(a)eclipso.eu
Distribution: ---
Created attachment 75907
--> https://bugs.winehq.org/attachment.cgi?id=75907
output from the command: journalctl MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1
-o verbose
Blur sometimes crashes. When it does, the following is visible in the console:
FIRST : Potentially bad data : 638 DiffPrev :2.460445 DiffNext :1.706726
FIRST : Potentially bad data : 640 DiffPrev :7.508575 DiffNext :7.046486
0130:err:virtual:allocate_virtual_memory out of memory for allocation, base
(nil) size 000b0000
0130:err:d3d:wined3d_resource_allocate_sysmem Failed to allocate system memory.
0130:err:d3d:texture_resource_sub_resource_map Failed to prepare location.
0024:err:virtual:virtual_setup_exception stack overflow 1064 bytes addr
0x5b7d4352 stack 0x2070bd8 (0x2070000-0x2071000-0x2570000)
Segmentation fault (core dumped)
To reproduce:
Download Blur from here:
https://www.myabandonware.com/download/y5l-blur
$ md5sum ~/Downloads/Blur_Win_EN_Full-Rip.zip
1828b38fbaf4f6590b0d8453a5c0c2ea
/home/cedric/Downloads/Blur_Win_EN_Full-Rip.zip
unzip the game, and run it. After a various amount of time, the game crashes.
Usually after about an hour of playing.
[cedric@cedric BLUR]$ wine Blur.exe
I've found the core file here, but it's bigger than I can attach here (424MB):
$ ls -lh /var/lib/systemd/coredump/
-rw-r-----+ 1 root root 424M Jan 16 18:14
'core.Game\x20Master.1000.449d77bb791e4c56a3cea8da590fe8d1.4692.1705425290000000.zst'
Information about the crash is recorded in the system journal, I've attached
the output of this command:
$ journalctl MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1 -o verbose
My system:
Arch linux, XFCE on Xorg
AMD video card, open source driver
$ wine --version
wine-9.0-rc3
$ uname -a
Linux cedric 6.6.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 14 Dec 2023 03:45:42
+0000 x86_64 GNU/Linux
--
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=51955
Bug ID: 51955
Summary: Fusion 360: Certain elements from the UI remain drawn
on screen when switching to other applications
Product: Wine
Version: 6.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alex.lemony(a)gmail.com
Distribution: ---
Created attachment 70935
--> https://bugs.winehq.org/attachment.cgi?id=70935
Screenshot showing bug
Fusion 360 was installed with the following installer on Manjaro KDE
Edition(x86):
https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux
Possibly of relevance is that the Bismuth tiling windows KWin script has been
in use is the current session, though the bug persists also when it is
deactivated.
Bug:
Certain elements of the UI such as the top left folder view under `BROWSER:`,
the dialogue indicating that the current file is unsaved, the heading
`COMMENTS:` in the bottom left, and the view manipulation bar at the bottom in
the center, remain drawn on screen when switching to other applications on the
same and on different virtual desktops.
This persists even when Fusion 360 is minimized. (see screenshot).
The dialogues remain interactable with buttons reacting to mouseover, though
clicking appears to have no effect.
Thanks, please email for further details if needed.
--
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=56196
Bug ID: 56196
Summary: Winelib DLLS using Wine APIs broken - constructor
issue?
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: john.rogers(a)oracle.com
Distribution: ---
The .L__wine_spec_import_data_ptrs table doesn't appear to be initialized
correctly starting in Wine 6 for winelib DLLs. Simplest sample I could come up
with:
DLL source: (mydll.cpp)
#include <windows.h>
BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason, LPVOID lpReserved)
{
return TRUE;
}
extern "C" {
void APIENTRY dllMethod(char *str)
{
// Create msgbox
int msgbox = MessageBox(NULL, str, "The Caption", 0);
return;
}
}
SPEC file: (mydll.spec)
@ stdcall dllMethod(str)
Main EXE src: (main.c)
#include <windows.h>
extern void APIENTRY dllMethod(char *str);
// This function is the entry point for the program
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR
lpCmdLine, int nCmdShow)
{
// Create msgbox
int msgbox = MessageBox(NULL, "Text 1", "The Caption", 0);
dllMethod("**** Text 2 ****");
msgbox = MessageBox(NULL, "Text 3", "The Caption", 0);
return 0;
}
Compiled with following commands:
winegcc -m64 -shared -mwindows -o mydll.dll mydll.cpp mydll.spec
winegcc -m64 -mwindows main.c mydll.dll.so
If you do this with Wine 4.0.4, running "wine64 a.out.so" will step through the
3 message boxes. If you do this with Wine 6 or greater, the first message box
will be displayed, then the app will crash. The issue appears to be related to
changes made in April 2020 ("winebuild: Don't use a constructor for dll modules
either.") - the __wine_dll_register function appears to have been orphaned.
--
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=51664
Bug ID: 51664
Summary: Autodesk Fusion360: crashes when try to create
drawings
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tony762(a)gmx.com
Distribution: ---
Created attachment 70538
--> https://bugs.winehq.org/attachment.cgi?id=70538
Backtrace
Url: https://www.autodesk.cz/products/fusion-360/overview
Wine-staging 6.15
In Design when I try to create a new drawing from component, AcCoreConsole.exe
crashes.
--
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=54661
Bug ID: 54661
Summary: winscard:winscard - The 32-bit test crashes in Wine
due to incorrect libpcsclite function signatures
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winscard
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
winscard:winscard - The 32-bit test crashes in Wine due to incorrect
libpcsclite function signatures:
winscard.c:49: Test failed: got 80100004
winscard.c:52: Test failed: got 6
winscard.c:61: Test failed: got 6
[...]
winscard.c:120: Test failed: got deadbeef
Unhandled exception: page fault on read access to 0xdeadbeef in 32-bit code
(0x6d702b0e).
See https://test.winehq.org/data/patterns.html#winscard:winscard
Where 0x80100004 == SCARD_E_INVALID_PARAMETER
The only important failure is the first one: SCARD_E_INVALID_PARAMETER.
This happens because Wine's winscard implementation passes NULL context pointer
to the libpcsclite SCardEstablishContext() function.
And this happens because that function takes a 32-bit scope value while
unixlib.c declares that parameter are 64-bit so the remaining parameters are
all shifted.
That makes the commit below the source of the bug:
commit 8490c43f38e306fef7b5fed3ffcb256efd73af58
Author: Hans Leidekker <hans(a)codeweavers.com>
AuthorDate: Thu Feb 16 09:56:12 2023 +0100
winscard: Implement SCardEstablish/ReleaseContext() on top of libpcsclite.
--
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=56044
Bug ID: 56044
Summary: Wrong RTF text saved by application
Product: Wine
Version: 9.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: leyyyyy(a)gmail.com
Distribution: ---
Created attachment 75699
--> https://bugs.winehq.org/attachment.cgi?id=75699
Comparison in Meld
In windows application will update only the following lines in the file:
<a:ModificationDate>1632770938</a:ModificationDate>
A=char(1)
But Wine adds its own data which breaks original application.
You can check screenshot for details.
Error happens at least in versions 8/9 (staging is used).
--
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=47747
Bug ID: 47747
Summary: DMM Game Player crashes on startup
Product: Wine
Version: 4.15
Hardware: x86
URL: http://dl-gameplayer.dmm.com/admin/win/installer/DMMGa
mePlayerSetup.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sagawa.aki+winebugs(a)gmail.com
Distribution: Ubuntu
Created attachment 65226
--> https://bugs.winehq.org/attachment.cgi?id=65226
Terminal output with WINEDEBUG=msgbox,seh
DMM Game Player is a downloader for online games (download-type) and a launcher
for browser games. It has similar functions to Steam Client.
After the install, DMMGamePlayer.exe shows the loading window and complains
with following message:
JET RUNTIME HAS DETECTED UNRECOVERABLE ERROR: system exception at 0x0ecbc743
Please, contact the vendor of the application.
Extra information about error is saved in the "jet_err_8.txt" file.
I tested with the following file:
SHA1(DMMGamePlayerSetup.exe) = 00cedd319fccf77542ee3ffc695e46f15103401d
--
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=56177
Bug ID: 56177
Summary: The 64-bit uxtheme:system fails on Windows 10 2004+
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: uxtheme
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
The 64-bit uxtheme:system fails on Windows 10 2004+:
system.c:2735: Test failed: Expected value 0, got -1702550272
See http://winetest.dolphin/data/patterns.html#uxtheme:system
A bisect shows that this failure started with the commit below:
commit b5f4a6a4dbb6f4d7b9f182d0d551393558458712
Author: Louis Lenders <xerox.xerox2000x(a)gmail.com>
Date: Thu Oct 19 15:15:36 2023 +0200
uxtheme: Add ShouldAppsUseDarkMode.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55821
--
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=49037
Bug ID: 49037
Summary: Japanese Visual Novel "Natural Vacation" gives error
MessageBox
Product: Wine
Version: 5.7
Hardware: x86
OS: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 67016
--> https://bugs.winehq.org/attachment.cgi?id=67016
Screenshot on wine
See the attached picture. You can close the messagebox again and it seems to
work just fine, but it's a bit annoying.
--
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.