https://bugs.winehq.org/show_bug.cgi?id=49987
Bug ID: 49987
Summary: Application freeze when trying to open file chooser
dialog
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: mikrutrafal(a)protonmail.com
Distribution: ---
Created attachment 68389
--> https://bugs.winehq.org/attachment.cgi?id=68389
Full log
When I download my GTK app -
https://github.com/qarmin/czkawka/releases/download/1.1.0/windows_czkawka_g…
and run it, then when clicking at "+Add" directly below "Included Directories",
then app freeze
Suspicious errors from console
```
01d8:fixme:imm:ImmGetOpenStatus (000000000383F3B0): semi-stub
01d8:fixme:imm:ImmReleaseContext (0000000000030082, 000000000383F3B0): stub
01d8:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\users\\rafal\\Local
Settings\\Application Data\\recently-used.xbel"
01d8:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\users\\rafal\\Local
Settings\\Application Data\\gtk-3.0\\bookmarks"
01d8:err:shell:SHGetFileInfoW pidl is null!
01d8:err:shell:SHGetFileInfoW pidl is null!
(czkawka_gui.exe:468): Gtk-WARNING **: 14:44:44.483: Error loading theme icon
'list-add' for stock: Icon 'list-add' not present in theme Adwaita
01d8:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\users\\rafal\\Local
Settings\\Application Data\\gtk-3.0\\bookmarks"
01d8:fixme:file:GetLongPathNameW UNC pathname L"\\\\?\\C:\\users\\rafal\\Local
Settings\\Application Data\\gtk-3.0\\servers"
```
On Windows none of this errors is shown
--
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=57994
Bug ID: 57994
Summary: Sherlock Holmes Crimes and Punishments - Can't start a
new game (Wine freezes during loading screen)
Product: Wine
Version: 10.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nekoNexus(a)protonmail.ch
Distribution: ---
Created attachment 78254
--> https://bugs.winehq.org/attachment.cgi?id=78254
Vanilla Wine 10.3 Log
Distro: Gentoo Linux (x86_64)
Desktop Environment: KDE Plasma 6.2.5 (Wayland)
CPU: Ryzen 3700X @ 4.98 GHz
RAM: 32GBs @ 3600 MHz
GPU: AMD RX 7800 XT
Mesa Version: 25.0.1
Game ​Version: 1.0.10897.0 (GOG release)
Winetricks Verbs: vcrun6 vcrun2010 vcrun2022
Esync/Fsync: Consistent regardless if on or off
DXVK Version: 2.6
Gamescope Version: 3.16.2
Explanation:
------------
After launching the game and starting a new save (new game button), the game
will play a brief video then begin a loading screen: but this loading screen
freezes partway through.
Going through the Wine log shows messages like this when it happens:
"170304.455:0020:01c4:err:sync:RtlpWaitForCriticalSection section 02AE36E4 "?"
wait timed out in thread 01c4, blocked by 0238, retrying (60 sec)"
and I'm forced to kill the process as a result.
As such, I can't play the game... *sadface*
--
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=58017
Bug ID: 58017
Summary: Can no longer move windowed fullscreen window to
alternate monitor
Product: Wine
Version: 10.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)mattkeenan.net
Distribution: ---
Created attachment 78279
--> https://bugs.winehq.org/attachment.cgi?id=78279
wine output
I can't move my windowed fullscreen app from the default monitor to my second
monitor. It tries to move but after one frame is drawn it reverts back to the
default monitor.
I suspect the regression is caused by 6a2e414d as this is the only relevant
change that came in 10.4 that wasn't in 10.3.
I reverted 6a2e414d and rebuilt 10.4 and now my windowed fullscreen application
won't open its main window at all.
wine output 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=43585
Bug ID: 43585
Summary: Calling PageSetupDlgA with invalid default printer
leads to an unhandled exception
Product: Wine
Version: 2.15
Hardware: x86
OS: Windows
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: kamil.hornicek(a)reactos.org
Created attachment 58997
--> https://bugs.winehq.org/attachment.cgi?id=58997
possible solution
This was tested in Windows XP with Wine's comdlg32.dll.
Steps to reproduce:
1. set Software\Microsoft\Windows NT\CurrentVersion\Windows\Device to a
non-existent printer
2. run comdlg32 printdlg test
Expected result:
PageSetupDlgA should fail with PDERR_NODEFAULTPRN
Acutal result:
test_PageSetupDlgA crashes after null pointer dereference in
GdiConvertToDevmodeW
Remarks:
If the value of the system default printer stored in Software\Microsoft\Windows
NT\CurrentVersion\Windows\Device gets corrupted or is not properly set upon
printer
removal, PageSetupDlgA called with the PSD_RETURNDEFAULT flag will cause an
unhandled exception in gdi32:GdiConvertToDevmodeW after calling it with a null
devmode.
At comdlg32:pagesetup_common@3862 get_default_printer will succeed but the
returned printer will be bogus. Then pagesetup_change_printer will fail trying
to get the default driver. When pagesetup_update_papersize is called few lines
below the devmode stored in the pagesetup_data struct passed to it will be
null, which will lead to the crash.
Solution:
Function comdlg32:pagesetup_common needs to check the return value of
comdlg32:pagesetup_change_printer and return if it fails. Attached is a
possible solution to this bug.
--
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=58015
Bug ID: 58015
Summary: Office 2007 - Incorrect character for empty Product
Key field
Product: Wine
Version: 10.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 78275
--> https://bugs.winehq.org/attachment.cgi?id=78275
Wine 10.3
Office 2007 iso from
https://lecrabeinfo.net/telecharger/office-professionnel-plus-2007/
During installation an invalid character (non-null) is displayed in Product Key
field
--
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=58014
Bug ID: 58014
Summary: Different VIRTGPU / vulkan related error messages are
shown at the CLI
Product: Wine
Version: 10.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kle(a)bluewin.ch
Distribution: ---
Since Wine 10.3 (or possibly also Wine 10.2) I have noticed under Kubuntu 24.04
LTS and Mesa 25.0 different error messages at the CLI which seems to be Vulkan
related.
test@iMac-4:~$ winecfg
MESA: error: DRM_IOCTL_VIRTGPU_GET_CAPS failed with Keine Berechtigung
MESA: error: DRM_IOCTL_VIRTGPU_CONTEXT_INIT failed with Das Argument ist
ungültig, continuing without context...
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
MESA: error: DRM_VIRTGPU_RESOURCE_CREATE_BLOB failed with Keine Berechtigung
MESA: error: Failed to create virtgpu AddressSpaceStream
MESA: error: vulkan: Failed to get host connection
It looks that those errors are present when no Vulkan support is avaiable. In
my case, I can confirm them for an iMac12,2 which uses the r600 Mesa driver as
well as for an even older iMac5,1 which uses the r300 one.
Otherwise Wine seems to work normally.
--
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=57904
Bug ID: 57904
Summary: OnDemand app crash on wine-10
Product: Wine
Version: 10.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: kulaginds(a)gmail.com
Distribution: ---
Created attachment 78148
--> https://bugs.winehq.org/attachment.cgi?id=78148
Exception report by wine
In wine-9 no crash.
It begins at wine-10.
Wine 10 was compiled from sources with flags:
--enable-win64 --enable-archs=x86_64 --disable-win16 --disable-tests
--without-alsa --without-capi --without-coreaudio --without-cups --without-dbus
--without-ffmpeg --without-gphoto --without-gssapi --without-gstreamer
--without-krb5 --without-netapi --without-osmesa --without-oss --without-pcap
--without-pcsclite --without-pulse --without-sane --without-sdl --without-usb
--without-v4l2 --without-wayland --with-x
With packages:
libfontconfig-dev libfreetype-dev libxcursor-dev libxi-dev libxext-dev
libxxf86vm-dev libxrandr-dev libxfixes-dev libxinerama-dev libxcomposite-dev
ocl-icd-opencl-dev libudev-dev libvulkan-dev libgnutls28-dev
At ubuntu:24.04 in container.
--
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=58013
Bug ID: 58013
Summary: My "IsSingleInstance" .NET-app crashes on second
attempt to start
Product: Wine
Version: 10.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andreas.franz(a)arcor.de
Distribution: ---
Using of "IsSingleInstance" from Microsoft.VisualBasic.ApplicationServices
produce a crash on second attempt to start this app.
I've converted VB.Net-Apps to C# - on real Windows, this setting still works
fine.
On WineHQ it produces:
Unhandled Exception:
Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceException:
This single-instance application could not connect to the original instance.
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[]
commandLine)
at Grid.My.MyApplication.Main(String[] Args) in
G:\NET-Programme\Sourcen\C#\Terminplan\My
Project\MyNamespace.Static.1.Designer.cs:line 118
wine: Unhandled exception 0xe0434352 in thread 4ac at address 7B646E97 (thread
04ac), starting debugger...
regards, Andy
--
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=57259
Bug ID: 57259
Summary: Keepass 2 automatic update dialog is broken
Product: Wine
Version: 9.18
Hardware: x86-64
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 77175
--> https://bugs.winehq.org/attachment.cgi?id=77175
Screenshot Wine
See screenshots.
--
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=58010
Bug ID: 58010
Summary: Fallout 3 Error Wine 10.4 Failure to Launch New Game
Product: Wine
Version: 10.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mdcarroll6(a)hotmail.com
Distribution: ---
Created attachment 78269
--> https://bugs.winehq.org/attachment.cgi?id=78269
Error Log
Having trouble with running Fallout 3 on Fedora 41 Linux. Used the normal
installation methods and even configured wine to use Windows 7 compatibility
instead of Windows 10. Attached an error log just in case it helps.
--
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=58009
Bug ID: 58009
Summary: Cryptbase: err:module:find_forwarded_export module not
found
Product: Wine
Version: 10.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: patrick+winehq.org(a)laimbock.com
Distribution: ---
10.4 on Fedora 41 x86_64 shared-WoW64 build.
Error message:
17:37:30 [Kick 3-BNQaijks] [Wine STDERR] 0024:err:module:find_forwarded_export
module not found for forward 'cryptbase.SystemFunction001' used by
L"C:\\windows\\syswow64\\advapi32.dll"
Regression since 10.3 where this issue does not occur, more specifically before
the merging of MR7580
https://gitlab.winehq.org/wine/wine/-/merge_requests/7580
Please let me know if you need more information.
--
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=56787
Bug ID: 56787
Summary: Comctl32 Edit - Handles does not work wirth large
content as limited to 16bits
Product: Wine
Version: 9.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Test case : using a notepad, open a large (eg : 10 MB) file.
Vertical handle is unable to reach the bottom.
Observed in Ubuntu with Wine 9.10 but this has been reported in ReactOS too (
https://jira.reactos.org/browse/CORE-19305 ). Cause seems to be as following,
quoting comment from the ticket :
"The messages that indicate scroll bar position, WM_HSCROLL and WM_VSCROLL,
provide only 16 bits of position data. The GetScrollInfo function enables
applications to use 32-bit scroll positions."
Patch available at https://jira.reactos.org/browse/CORE-19305
--
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=56234
Bug ID: 56234
Summary: foobar2000 advanced preferences Apply button not
available when change options via checkboxes
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: paregistrase(a)yahoo.es
Distribution: ---
In the Preferences: Advanced window when an option is changed via checkboxes
the Apply button remains grey and the change can't be set.
Screenshot: https://imgur.com/wcnT4o1
Also the rounded checkboxes can't be activated
Screenshot: https://imgur.com/MFbApn6
But the options that have a text to edit enable the Apply button when changes
Screenshot: https://imgur.com/1KM0xy2
Others pages in preferences like the Context menu also presents this problem.
Previously this used to work
--
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=58004
Bug ID: 58004
Summary: build issue for clang i686 linux musl
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: euloanty(a)live.com
Distribution: ---
lld-link: error: <root>: undefined symbol: _DllMainCRTStartup@12
lld-link: error: undefined symbol: ___wine_spec_unimplemented_stub
>>> referenced by tmp67e172a0/kernel32-00000000.spec.o:(___wine_stub_ThunkTheTemplateHandle)
>>> referenced by tmp67e172a0/kernel32-00000000.spec.o:(___wine_stub_GDIReallyCares)
>>> referenced by tmp67e172a0/kernel32-00000000.spec.o:(___wine_stub_IsThreadId)
>>> referenced 117 more times
lld-link: error: undefined symbol: ___wine_exception_handler_page_fault
>>> referenced by dlls/kernel32/i386-windows/atom.o:(_GlobalAddAtomA@4)
>>> referenced by dlls/kernel32/i386-windows/computername.o:(_GetComputerNameA@8)
>>> referenced by dlls/kernel32/i386-windows/resource.o:(_FindResourceExA@16)
lld-link: error: undefined symbol: ___wine_setjmpex
>>> referenced by dlls/kernel32/i386-windows/atom.o:(_GlobalAddAtomA@4)
>>> referenced by dlls/kernel32/i386-windows/computername.o:(_GetComputerNameA@8)
>>> referenced by dlls/kernel32/i386-windows/debugger.o:(_OutputDebugStringA@4)
>>> referenced 9 more times
lld-link: error: undefined symbol: ___wine_exception_handler
>>> referenced by dlls/kernel32/i386-windows/debugger.o:(_OutputDebugStringA@4)
>>> referenced by dlls/kernel32/i386-windows/virtual.o:(_IsBadReadPtr@8)
>>> referenced by dlls/kernel32/i386-windows/virtual.o:(_IsBadWritePtr@8)
>>> referenced 6 more times
clang: error: linker command failed with exit code 1 (use -v to see invocation)
winegcc: /home/cqwrteur/toolchains/llvm/x86_64-linux-gnu/llvm/bin/clang failed
make: *** [Makefile:218719: dlls/kernel32/i386-windows/kernel32.dll] Error 2
make: *** Waiting for unfinished jobs....
wine build failure
--
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=58003
Bug ID: 58003
Summary: Skyrim Special Edition: Creation Kit draws menu with
incorrect resolution.
Product: Wine
Version: 10.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: fx-8350-8(a)hotmail.com
Distribution: ---
The Scenes tab of the quest window draws a flow chart menu with a vertical
resolution of 1 pixel making it unusable.
An internal function in "Creation Kit.exe" creates the flow chart menu and is
called two times (with the second call overwriting the first)
by calling IntersectRect with the correct menu resolution and an uninitialized
RECT structure that contains mostly random values. Afterwards
function calls in the creation kit sets the values in the uninitialized RECT to
left=-2, top=-1, right=1094215229, bottom=1 on both Windows and Wine.
On Wine this RECT is an input to IntersectRect with the correct resolution and
outputs a RECT with top=0, bottom=1 leading to the unusable menu.
On Windows a call to KiUserCallbackDispatcher overwrites the incorrect RECT to
have bottom=32767 before the second IntersectRect call making RECT
invalid due to the bottom value being larger than top. This causes the
IntersectRect call to fail and create the menu later in the creation kit.
Since the menu with a resolution of 1 is technically valid the creation kit
never sets it to the correct resolution on wine.
--
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=57995
Bug ID: 57995
Summary: The Testament of Sherlock Holmes: Failed Vulkan Assert
in winevulkan/loader_thunks.c
(vkCreateGraphicsPipelines)
Product: Wine
Version: 10.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winevulkan
Assignee: wine-bugs(a)winehq.org
Reporter: nekoNexus(a)protonmail.ch
Distribution: ---
Created attachment 78256
--> https://bugs.winehq.org/attachment.cgi?id=78256
Vanilla Wine 10.3 Log
The game works enough to get to the main menu with just DXVK, but Wine throws a
failed Vulkan assert immediately upon actually starting a new game session
after confirming at the main menu: not even a loading screen is seen before it
happens.
The log points to: winevulkan/loader_thunks.c, line 3190
(vkCreateGraphicsPipelines)
https://gitlab.winehq.org/wine/wine/-/blob/wine-10.3/dlls/winevulkan/loader…
There's also mentions of failing to map memory elsewhere in the log, which I
don't really understand?
(Correct me if I'm misunderstanding the issue, but my hardware is far above
minimum spec for this game.)
----
Distro: Gentoo Linux (x86_64)
Desktop Environment: KDE Plasma 6.2.5 (Wayland)
CPU: Ryzen 3700X @ 4.98 GHz
RAM: 32GBs @ 3600 MHz
GPU: AMD RX 7800 XT
Mesa Version: 25.0.1
Wine Version: 10.3 (vanilla)
DXVK Version: 2.6
Gamescope Version: 3.16.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.
https://bugs.winehq.org/show_bug.cgi?id=57922
Bug ID: 57922
Summary: MEmu Android Emulator NOT OPENING. Critical
malfunction
Product: Wine
Version: 10.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: pocomal112(a)codverts.com
Distribution: ---
Created attachment 78176
--> https://bugs.winehq.org/attachment.cgi?id=78176
MEmu Android Emulator NOT OPENING. Critical malfunction
The Android emulator software does not work due to bugs. I ask the wine team to
fix this. Here is the link to the software's website to know what software it
is
https://www.ldplayer.net/
--
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=57905
Bug ID: 57905
Summary: MS DX Diagnostic Tool (DxDiag.exe) crashes when using
with WineD3D complete Direct3D stack
Product: Wine
Version: 10.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: svyatpro(a)gmail.com
Distribution: ---
When running Microsoft DirectX Diagnostic Tool along with complete WineD3D
Direct3D stack (d3d9/d3d10/d3d10.1/d3d11/dxgi/wined3d dlls) this tool crashes
with following messages:
C:\WINDOWS\SysWOW64>dxdiag
08b0:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from
glTexIma
ge2D @ ../dlls/wined3d/adapter_gl.c / 642.
--
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=47068
Bug ID: 47068
Summary: fixme:ntdll:create_logical_proc_info Only 64 Threads
are usable
Product: Wine
Version: 4.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: coolx67(a)gmx.at
Distribution: ---
When running heavy multi threaded programs such as scientific applications or
benchmarks it shows that only 64 threads can be used.
> 002a:fixme:ntdll:create_logical_proc_info Improve CPU info reporting: system supports 96 logical cores, but only 64 supported!
The problem is here
https://github.com/wine-mirror/wine/blob/master/dlls/ntdll/nt.c#L1687
I don't know how much time I have to fix this.
But if someone would brainstorm this with me.
It were my first 5 minutes in the Wine code so please have some understanding.
If there would be some mentor who would give me some advice I could probably
fix some of the 22k+ FIMES in the code :)
Here the WINEDBG from Cinebench
https://pastebin.com/FrgSGxGw
--
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=57717
Bug ID: 57717
Summary: Adobe Illustrator CS6 (16), Adobe Photoshop CS6 (13),
likely all CS6 apps: Main menu bar item
shortcut/accelerator key underlines positioning is
wrong with built-in gdiplus
Product: Wine
Version: 10.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: bugs.winehq.org(a)zetafleet.com
Distribution: Debian
Created attachment 77922
--> https://bugs.winehq.org/attachment.cgi?id=77922
Screenshot of difference between native and built-in gdiplus
Reproduction:
1. Open application
Expected: An underline is drawn under the letter of the accelerator key of each
main menu item
Actual: Underline is drawn underneath nothing, at the end of the menu item
See attached screenshot.
Sequence of gdiplus calls from the start of application (using built-in
gdiplus) can be seen from the same trace given at
https://bugs.winehq.org/attachment.cgi?id=77921 on bug #57716.
Please let me know if I can provide additional information.
--
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=47278
Bug ID: 47278
Summary: Europa Universalis 4 Golden Century require TGA
support in D3DXSaveSurfaceToFileInMemory
Product: Wine
Version: 4.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: lorenzofer(a)live.it
Distribution: ---
HI.
As the title says, Europa Universalis 4 Golden Century (so version 1.28.3
Spain), require TGA file support for D3DXSaveSurfaceToFileInMemory function.
In the log there is :
0057:fixme:d3dx:D3DXSaveSurfaceToFileInMemory File format 0x2 is not supported
yet
After the line the application catch a MEMORY_ACCESS_VIOLATION and close
itself.
In the log there is also a bunch of:
0057:fixme:d3dx:D3DXLoadSurfaceFromMemory Unhandled filter 0x80004.
For now winetricks d3d9x_43 is a workaround
--
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=57952
Bug ID: 57952
Summary: Q-Dir crashes on exit.
Product: Wine
Version: 10.3
Hardware: x86-64
URL: http://www.softwareok.com/Download/Q-Dir_Portable_x64.
zip
OS: Linux
Status: NEW
Keywords: download, patch
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
Created attachment 78199
--> https://bugs.winehq.org/attachment.cgi?id=78199
patch
Just start the program, and then exit:
0024:fixme:shell:IShellView_fnSaveViewState (0000000000AA6020) stub
wine: Call from 00006FFFFF3ED077 to unimplemented function
magnification.dll.MagUninitialize, aborting
Attached patch fixes the crash, will send upstream.
--
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=57800
Bug ID: 57800
Summary: Fullscreen OpenGL apps have unintended literal
transparency
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winewayland
Assignee: wine-bugs(a)winehq.org
Reporter: lassebq.mine(a)gmail.com
Distribution: ---
Created attachment 78009
--> https://bugs.winehq.org/attachment.cgi?id=78009
OpenGL game which is getting transparent regions
OpenGL surfaces under wayland should be rendered with EGL_EXT_present_opaque
set to EGL_FALSE to avoid unintended transparency
--
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=56106
Bug ID: 56106
Summary: Roon 2.0.23 crashes due to unable to find library:
Windows.Storage.Streams.RandomAccessStreamReference
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: bunsengorionik(a)gmail.com
Distribution: ---
Same root cause as BugID#55867 (https://bugs.winehq.org/show_bug.cgi?id=55867)
but the error is different on wine RC1 or RC3.
Relevant snippet from the log attached:
0118:err:combase:RoGetActivationFactory Failed to find library for
L"Windows.Storage.Streams.RandomAccessStreamReference"
0118:err:eventlog:ReportEventW L"Application: Roon.exe\n"
0118:err:eventlog:ReportEventW L"CoreCLR Version: 6.0.2123.36311\n"
0118:err:eventlog:ReportEventW L".NET Version: 6.0.21\n"
0118:err:eventlog:ReportEventW L"Description: The process was terminated due to
an internal error in the .NET Runtime at IP 00006FFFFBC22699 (00006FFFFBA50000)
with exit code c0000005.\n
Running 9.0-rc3 wine-staging on Linux Mint 21.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.