https://bugs.winehq.org/show_bug.cgi?id=42107
Bug ID: 42107
Summary: app kpg91d crashes when setting up serial port
selection
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kl7ut(a)ymail.com
Distribution: ---
Created attachment 56627
--> https://bugs.winehq.org/attachment.cgi?id=56627
backtrace from Wine kpg91d crash
Kenwood Radio programming software kpg91d crashes when accessing settings,
communications port dialogue.
--
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=26017
Summary: 3D Pinball - Space Cadet: fullscreen does not work
properly
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: turbolad995(a)hotmail.co.uk
3D Pinball - Space Cadet
If you can copy the file from Windows XP in C:\Program Files\Windows NT\Pinball
(or if you dual-boot Windows XP with Linux and access the file) and run the
pinball.exe in Wine.
Fullscreen mode does not work properly. The title bar of the window still
shows when you press <F4> to go into fullscreen. Also, the top and bottom
GNOME panels in Ubuntu are still showing. The game is supposed to be in
fullscreen completely.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=19833
Summary: the program hotkeynet.exe has encountered a serious
problem and needs to close
Product: Wine
Version: 1.1.28
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: goin2far(a)gmail.com
When starting the program Hotkeynet the error pops up and can get no further.
--
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=54833
Bug ID: 54833
Summary: Heroes of Might and Magic 5 crash on starting some
builtin maps, since wine 7.13
Product: Wine
Version: 8.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galdralag(a)bk.ru
Distribution: ---
While answering on https://bugs.winehq.org/show_bug.cgi?id=39742#c21 I found
that I can't start many single player maps (Single Player -> Custom Game) -
game crashes. These maps was playable earlier. And playing on maps that can be
started game often occasionally crashes.
After investigation different versions I found this begins from wine 7.13 on
7.12 all ok.
--
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=50865
Bug ID: 50865
Summary: Map editor of Heroes of Might and Magic 5 completely
not working
Product: Wine
Version: 6.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galdralag(a)bk.ru
Distribution: ---
Created attachment 69677
--> https://bugs.winehq.org/attachment.cgi?id=69677
Screenshot
Heroes of Might and Magic 5.
Map editor starts, shows left and right panels with games elements. But on
place of map it shoes garbage rectangle.
See attached screenshot.
--
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=54346
Bug ID: 54346
Summary: (Multithreaded) Applications sometimes get heap
corruption on exit due to ignoring critical sections
in Wine
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dmusic
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
(Multithreaded) Applications sometimes get heap corruption on exit due to
ignoring critical sections in Wine. For instance dmloader:loader:
0118:warn:sync:RtlpWaitForCriticalSection process
L"Z:\\home\\fgouget\\wine\\wine-gitlab\\dlls\\dmloader\\tests\\i386-windows\\dmloader_test.exe"
is shutting down, returning STATUS_SUCCESS
...
0118:warn:sync:RtlpWaitForCriticalSection process
L"Z:\\home\\fgouget\\wine\\wine-gitlab\\dlls\\dmloader\\tests\\i386-windows\\dmloader_test.exe"
is shutting down, returning STATUS_SUCCESS
0118:err:sync:RtlLeaveCriticalSection section 00140074 "dlls/ntdll/heap.c: main
process heap section" is not acquired
Normally this does not cause the test to fail. But when running with
WINEDEBUG=heap this frequently leads to heap corruption because:
* Each call to the heap API triggers a heap validation.
* Each heap_validate() call is requires taking the main process heap lock.
* More contention makes the "not acquired" events more likely.
* Leading to multiple threads manipulating the heap at the same time, thus
causing corruption.
Also, be aware that when heap corruption is detected due to WINEDEBUG=heap,
Wine raises an exception which kills the process.
Also note that although dmloader:loader looks like it is not multithreaded (no
CreateThread() call), it loads dlls that create their own thread:
* winealsa.drv/midi.c -> notify_thread
* winealsa.drv/mmdevdrv.c -> alsa_timer_thread
* winepulse.drv/mmdevdrv.c -> pulse_mainloop_thread, pulse_timer_cb
...etc.
So this issue probably impacts most audio / multimedia applications and Wine
tests.
The "main process heap section is not acquired" errors most often look like
they are caused by the following functions which are all called on
DLL_PROCESS_DETACH:
* msacm32.MSACM_WriteCache() calling RegSetValueExA()
* ucrtbase.msvcrt_free_io() calling DeleteCriticalSection() when WINEDEBUG=heap
Ignoring the critical sections during shutdown is intentional and was
introduced by the 7def0f200f11 commit to fix bug 42470. See
RtlpWaitForCriticalSection():
/* Don't allow blocking on a critical section during process termination */
if (RtlDllShutdownInProgress())
{
WARN( "process %s is shutting down, returning STATUS_SUCCESS\n",
debugstr_w(NtCurrentTeb()->Peb->ProcessParameters->ImagePathName.Buffer) );
return STATUS_SUCCESS;
}
However that commit also had to add todo_wine statements to kernel32:loader so
it's not clear that is is correct.
--
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=46263
Bug ID: 46263
Summary: Final Fantasy XI crashes after accepting EULA when
using Ashita
Product: Wine-staging
Version: 3.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)foreversmall.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 62965
--> https://bugs.winehq.org/attachment.cgi?id=62965
Terminal Output with backtrace of crash.
When using Ashita with FFXI the game crashes shortly after accepting the EULA.
I've confirmed this with all the versions of wine starting from version 3.0
stable, all the way up to 3.21 staging. The only way I've been able to get the
game to launch is to compile wine myself with the following patch:
https://gitlab.com/farmboy0/wine/commit/54aea128e91a6b03bff05e79d9a09bea572…
Its very easy to recreate, use all the standard AppDB info to get FFXI setup.
Download ashita from the website:
https://git.ashitaxi.com/Ashita/Ashitav3-Launcher/raw/master/Ashita.exe
>From here you need all the ashita pre-reqs:
http://docs.ashitaxi.com/requirements/
Setup a config file with the settings ../Ashita/Config/Boot/
You can launch the game via this command: wine %path_to_Ashita%/injector.exe
"%CONFIGFILE%.xml"
If it properly loads then once you accept the EULA it will crash.
--
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=54794
Bug ID: 54794
Summary: Autodesk Fusion360: New SSO login will not open web
browser
Product: Wine
Version: 8.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: skala.antonin(a)gmail.com
Distribution: ---
Created attachment 74289
--> https://bugs.winehq.org/attachment.cgi?id=74289
Running processes
Autodesk rolled out new update (03 April) adding new SSO login instead of
build-in one. Clicking on Sign In button should open default browser and
redirect user into logIn page, but no browser will open (no error visible
inside console).
We tried to set http/https in HKEY_CLASSES_ROOT registers, also install windows
version of Firefox and ivent it runs, Fusion still refuses to open it.
Listing processes show, that new login component run (AdskIdentityManager.exe)
Exact steps we tried can be found there:
https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/issues/319
Installer:
https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20A…
-O Fusion360installer.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=50643
Bug ID: 50643
Summary: IK Product Manager: Unable to download plugins
Product: Wine
Version: 6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wmi&wbemprox
Assignee: wine-bugs(a)winehq.org
Reporter: gearoidburke(a)outlook.com
Distribution: ---
Created attachment 69355
--> https://bugs.winehq.org/attachment.cgi?id=69355
Wine log file.
IK Product Manger (https://www.ikmultimedia.com/products/productmanager/)
should be able to download and install VST plugins from IK Multimedia, however
upon clicking the install button for any plugin, the application will become
unresponsive for a minute or so before resuming as if nothing had happened. The
error in wine seems to be with wmic, with a wmic logicaldisk command failing.
The download location, by default ~/Documents/IK Multimedia/IK Product Manager,
is empty. Upon clicking the install button on a plugin again, nothing happens.
IK Product Manager installs and works as expected up until this point, provided
you have a dx11 compatibility layer like dxvk installed, though sometimes I
need to use wine-staging to get it to run properly.
I would have liked to have tested this in a 32 bit prefix so I could install
wmi, but the application is 64 bit only.
Wine version is 6.1-1, 64 bit architecture. Tested on both wine and
wine-staging.
OS is Arch Linux, 64 bit, kernel 5.10.
Hardware: Thinkpad X13 Yoga, Intel Core i5-10310U with Intel integrated
graphics.
--
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.