https://bugs.winehq.org/show_bug.cgi?id=56954
Bug ID: 56954
Summary: after commit 3f87436670d8a9c87e00825b71ed6995afd870a1
wine will generate ntlm_auth <defunct> process.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: l12436.tw(a)gmail.com
Distribution: ---
Created attachment 76771
--> https://bugs.winehq.org/attachment.cgi?id=76771
ntlm_auth defunct process
After commit 3f87436670d8a9c87e00825b71ed6995afd870a1 wine will generate lots
of ntlm defunct process.
before this commit, it will return to normal.
--
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=56969
Bug ID: 56969
Summary: Act of War (Direct Action, High Treason) crashes in
wined3d when loading the mission
Product: Wine
Version: unspecified
Hardware: x86-64
URL: https://store.steampowered.com/app/2710/Act_of_War_Dir
ect_Action/
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: z.figura12(a)gmail.com
Regression SHA1: 65165cf8520f85ac327115536749cda1aabef77b
Distribution: ---
Created attachment 76792
--> https://bugs.winehq.org/attachment.cgi?id=76792
terminal output
The game works properly in Wine-9.12, the issue is present in the current git
version of Wine.
The intro videos are playing fine, the menu works correctly. However the game
crashes when loading a mission.
I can't get a proper backtrace because the game's own debugger/exception
handler kicks in as soon as the game crashes.
The original demo version is not affected, I reproduced the problem with both
the GOG and the Steam versions.
Reverting commit 65165cf8520f85ac327115536749cda1aabef77b
fixes the crash for me.
(wined3d: Feed the FFP color key through a push constant buffer.)
wine-9.12-332-g34b16060199
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: NVIDIA GeForce GTX 1660 SUPER/PCIe/SSE2
OpenGL core profile version string: 4.6.0 NVIDIA 550.40.65
OpenGL core profile shading language version string: 4.60 NVIDIA
--
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=56994
Bug ID: 56994
Summary: mbstowcs for UTF8, with an exact (not overallocated)
output buffer size fails
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: martin(a)martin.st
CC: piotr(a)codeweavers.com
Distribution: ---
This issue can be illustrated with the following test snippet:
#include <stdio.h>
#include <locale.h>
#include <stdlib.h>
#include <wchar.h>
int main() {
const char *locname = "en_US.UTF-8";
if (!setlocale(LC_ALL, locname)) {
fprintf(stderr, "locale %s failed\n", locname);
return 1;
}
wchar_t wcsbuf[10] = { 0xe9, 0 }; // LATIN SMALL LETTER E WITH ACUTE
char mbsbuf[10] = { 0 };
size_t ret;
ret = wcstombs(NULL, wcsbuf, 0);
printf("initial wcstombs returned %d bytes\n", (int) ret);
ret = wcstombs(mbsbuf, wcsbuf, ret);
printf("wcstombs returned %d bytes\n", (int) ret);
if (ret == -1)
return 1;
for (size_t i = 0; i < ret; i++)
printf("%02x ", (unsigned char)mbsbuf[i]);
printf("\n");
ret = mbstowcs(NULL, mbsbuf, 0);
printf("initial mbstowcs returned %d wchars\n", (int) ret);
if (ret > sizeof(wcsbuf)/sizeof(wcsbuf[0]))
return 1;
ret = mbstowcs(wcsbuf, mbsbuf, ret);
printf("mbstowcs returned %d wchars\n", (int) ret);
if (ret == -1)
return 1;
for (size_t i = 0; i < ret; i++)
printf("%02x ", (unsigned int)wcsbuf[i]);
printf("\n");
return 0;
}
Compiled with mingw tools targeting UCRT.
On native Windows, this outputs:
initial wcstombs returned 2 bytes
wcstombs returned 2 bytes
c3 a9
initial mbstowcs returned 1 wchars
mbstowcs returned 1 wchars
e9
With Wine, it outputs:
initial wcstombs returned 2 bytes
wcstombs returned 2 bytes
c3 a9
initial mbstowcs returned 1 wchars
mbstowcs returned -1 wchars
Thus, the actual mbstowcs conversion fails, whereas it succeds on native
Windows.
The problem here is that the output buffer size, given to mbstowcs, is a
tightly allocated 1.
When scanning the (null terminated) input buffer, to calculate the input size,
at
https://gitlab.winehq.org/wine/wine/-/blob/wine-9.13/dlls/msvcrt/mbcs.c?ref…,
we limit the loop to "i<count". As we've passed count=1, as we know the output
is going to be 1 wchar, this loop terminates after one iteration.
The check "_isleadbyte_l((unsigned char)mbstr[size], locale)" seems to fail for
the leading UTF8 byte, which probably is a bug in itself. But if mbstowcs is
given an overallocated output size (passing a larger count parameter), that
issue isn't visible here.
--
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=56958
Bug ID: 56958
Summary: ChessBase 17 crashes after splash screen
Product: Wine
Version: 9.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)brobston.com
CC: rbernon(a)codeweavers.com
Regression SHA1: 27f63ff1cd7daeb47b0c396b5c842e73a3a34584
Distribution: Ubuntu
Created attachment 76774
--> https://bugs.winehq.org/attachment.cgi?id=76774
Log from launching ChessBase 17 at the first bad commit
This is a recent regression in which ChessBase 17 crashes after its splash
screen. I ran a regression test. Log (with WINEDEBUG=warn+all) from the first
bad revision is 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=56957
Bug ID: 56957
Summary: CEF application (BSG Launcher) freezes on mouse hover
action
Product: Wine
Version: 9.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: madbyte(a)tuta.io
Distribution: ---
Created attachment 76773
--> https://bugs.winehq.org/attachment.cgi?id=76773
error log, used WINEDEBUG=+seh+debugstr
Starting with Wine 9.11, the BSG Launcher (CEF application) freezes as soon as
the mouse enters the window of the application & the process has to be killed
forcefully to close the window.
On Wine 9.10 the launcher works as expected.
Only observable difference in the log output between 9.10 and 9.11 is this err:
0114:err:virtual:virtual_setup_exception nested exception on signal stack addr
0x7d1bec533173 stack 0x7ffcee80
--
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=56910
Bug ID: 56910
Summary: Sysinternals的ZoomIt程序的部分功能无法使用。
Product: Wine
Version: unspecified
Hardware: x86-64
OS: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: luzixuan2022(a)126.com
Created attachment 76731
--> https://bugs.winehq.org/attachment.cgi?id=76731
ZoomIt.exe为程序的可执行文件
ZoomIt程序的Draw和Zoom功能无法使用——使用时屏幕会黑屏,所以无法按预期使用。程序见附件。
--
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=57006
Bug ID: 57006
Summary: Unhandled exception: page fault trying to run Midtown
Madness 2
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: hillpeter723(a)gmail.com
Distribution: ---
Created attachment 76843
--> https://bugs.winehq.org/attachment.cgi?id=76843
Error report: Unhandled exception: page fault trying to run Midtown2
I encountered the Program Error dialog while trying to run Midtown Madness 2.
BTW, the installation process completed.
Unhandled exception: page fault on read access to 0x00004738 in wow64 32-bit
code (0x0040e41a).
--
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=56711
Bug ID: 56711
Summary: Vampire: The Masquerade - Bloodlines crashes on launch
(regression)
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: accounts.winehq.org(a)vv221.fr
Distribution: ---
Created attachment 76493
--> https://bugs.winehq.org/attachment.cgi?id=76493
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x7b68df75).
With WINE 9.0, Vampire: The Masquerade - Bloodlines crashes on launch with the
attached trace.
This crash does not happen when reverting to WINE 8.0. I will run a bisect in
the coming days to try to spot a faulty commit.
--
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=57000
Bug ID: 57000
Summary: Inspera Exam Portal SSO login (iceworm.exe) window
crashes
Product: Wine
Version: 9.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tuxifan(a)posteo.de
Distribution: ---
Created attachment 76839
--> https://bugs.winehq.org/attachment.cgi?id=76839
iceworm.exe crash report
While Wine is surprisingly able to pass **all** system checks, the SSO login
fails.
Follow these instructions to reproduce:
https://www.ltu.se/en/student-web/your-studies/examination/digital-exam-ins…
To be clear, I wouldn't use Wine to take an exam, EVER. Just gave this a try as
a joke and thought it might be worth fixing.
--
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=32515
Bug #: 32515
Summary: Warhammer 40,000: Space Marine (Steam) fails to start
Product: Wine
Version: 1.5.20
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 42894
--> http://bugs.winehq.org/attachment.cgi?id=42894
plain terminal output
On startup the game shows a black screen for a few seconds and audio from the
intro video can be heard for 0.5-1 second, then the game's own bug reporting
tool (Bugsplat) is popping up: "A problem has been encountered and the program
needs to close". No backtrace from Wine is generated.
A demo version is available on Steam, but I couldn't test it as I have the full
version.
http://store.steampowered.com/app/55150/
Steam installs MSVC++ 2005 runtime libraries and various DirectX components the
first time you start the game. Disabling gameoverlayrenderer in winecfg doesn't
help. I tested this bug with Wine 1.2.3, 1.4.1, 1.5.20.
Fedora 17 x86
Nvidia 250 / driver 304.64
X.Org X Server 1.12.4
Alsa 1.0.26
--
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.