https://bugs.winehq.org/show_bug.cgi?id=49202
Bug ID: 49202
Summary: Never exited critical section in freetype.c
Product: Wine
Version: 5.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikrutrafal54(a)gmail.com
Distribution: ---
if expression `(!enum_face_charsets(family, face, &enum_charsets, proc, lparam,
NULL))` is true, then only return is executed without exiting critical session
https://github.com/wine-mirror/wine/blob/6d801377055911d914226a3c6af8d8637a…
```
if (!enum_face_charsets(family, face, &enum_charsets, proc,
lparam, psub ? psub->from.name : NULL)) return FALSE;
}
}
} else {
LIST_FOR_EACH_ENTRY( family, &font_list, Family, entry ) {
face_list = get_face_list_from_family(family);
face = LIST_ENTRY(list_head(face_list), Face, entry);
if (!enum_face_charsets(family, face, &enum_charsets, proc, lparam,
NULL)) return FALSE;
```
--
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=53386
Bug ID: 53386
Summary: cmd.exe: FOR /F USEBACKQ doesn't handle UTF-16 output
of commands.
Product: Wine
Version: 7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: ahiler(a)codeweavers.com
Distribution: ---
Used by installation script of Septerra Core on Steam.
Easy reproducer:
FOR /F USEBACKQ %F IN (`wmic os get osarchitecture`) DO ECHO %F
Wmic output is UTF-16 and starts with BOM. On Windows the above snipped echoes
whatever wmic spits out. Currently on Wine it gets stuck in infinite loop.
The infinite loop is addressed by
https://gitlab.winehq.org/wine/wine/-/merge_requests/352 but UTF-16 is still
not handled at all.
--
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=35651
Bug ID: 35651
Summary: Warcraft III: Some videos are not played
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Created attachment 47608
--> http://bugs.winehq.org/attachment.cgi?id=47608
Console log from wine-1.7.13-27-ge610713
There was a bug 12792 - "Warcraft III videos is not playing" which was closed
as fixed in wine-1.7.13.
Well i noticed, that some videos are played, but not all for example
"Introduction: The Prophecy". I tested this on 64bit Debian Jessie and 32bit
Wheezy.
Results:
* In Wow64 the videos are skipped
* In 32bit version wine crashes
Even though Wow64 log suggest, that 32bit libgstreamer plugins are missing, i
don't think, that this line is correct as i installed them, recompiled and even
configure no longer complains about missing Gstreamer.
--
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=25726
Summary: PDF XChange Viewer corrupt display when scrolling
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: schwejk(a)quantentunnel.de
Created an attachment (id=32773)
--> (http://bugs.winehq.org/attachment.cgi?id=32773)
output when program run out of console
When scrolling a document horizontal lines appear and the document is partially
unreadable. (version 2.5 build 190)
http://www.tracker-software.com/product/pdf-xchange-viewer
--
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=50780
Bug ID: 50780
Summary: ALT+TAB freezes game Stronghold (Crusader)
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: geist1(a)sms.at
Distribution: ---
Game "Stronghold Crusader HD" as well "Stronghold Crusader" , "Stronghold I" -
Stronghold Extreme will freeze after ALT+TAB to Desktop and back switching with
ALT+TAB to the game.
If you tab out on the title screen of Stronghold and tab back in, the screen is
correctly restored but game freezes.
If you TAB out and back in during the game (not on the main screen) , the game
window is not restored correctly, only a black window is visible with no sound.
It worked correctly until 4.9.
All Version starting from 4.10 up current one (6.3) will fail.
Game run in fulscreen at 1280X720.
Desktop resolution is 1920X1080.
--
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=53479
Bug ID: 53479
Summary: dxgi:dxgi - Failed twice due to occlusion while
testing an invisible window vs a fullscreen swapchain
on Windows
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
dxgi:dxgi - Failed twice in test_swapchain_present() due to occlusion while
testing an invisible window vs a fullscreen swapchain on Windows:
dxgi.c:4792: Test failed: Test 0: Got unexpected hr 0x87a0001.
dxgi.c:4796: Test failed: Test 0: Got unexpected fullscreen status.
https://test.winehq.org/data/patterns.html#dxgi:dxgi
Where 0x87a0001 == DXGI_STATUS_OCCLUDED
This only happened on w1064v1507, on 2022-05-24 (32-bit) and 2022-07-27
(64-bit).
Maybe there's a window popping up that's causing the occlusion (from a previous
test crashing or a Windows notification)? Or maybe there is a message ordering
issue such that the windows states are not always as expected.
The only other case of occlusion issue happened on cw-rx460 when running
Windows 10 21H2. In that case the issue was systematic and happened earlier in
test_swapchain_present(), in the minimized window test and the set of failures
was different:
dxgi.c:4714: Test failed: Test 0: Got unexpected hr 0x87a0001.
dxgi.c:4735: Test failed: Test 0: Got unexpected hr 0x8876086a.
dxgi.c:4744: Test failed: Test 0: Got unexpected fullscreen status.
dxgi.c:4745: Test failed: Test 0: Got unexpected output.
dxgi.c:4753: Test failed: Test 0: Got unexpected fullscreen status.
dxgi.c:4765: Test failed: Test 0: Got unexpected fullscreen status.
--
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=53229
Bug ID: 53229
Summary: dxgi:dxgi - test_swapchain_window_messages() sometimes
gets an unexpected WM_DWMNCRENDERINGCHANGED message on
Windows
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
dxgi:dxgi - test_swapchain_window_messages() sometimes gets an unexpected
WM_DWMNCRENDERINGCHANGED message on Windows:
dxgi.c:5822: Test failed: Got unexpected message 0x31f, hwnd 00000000010E01E4,
wparam 0x1, lparam 0.
https://test.winehq.org/data/patterns.html#dxgi:dxgi
Where 0x31f == WM_DWMNCRENDERINGCHANGED.
This failure only happens on Windows 8 to Windows 10 1909.
The window handle also interferes with the TestBot's old failures detection.
Even without it, it would have an elevated risk of causing false positives due
to the test's multi-threading (see bug 53212).
--
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=52303
Bug ID: 52303
Summary: Bridge Baron 13: sound pops unusually
Product: Wine
Version: 7.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: juef17(a)hotmail.com
Distribution: ---
Created attachment 71460
--> https://bugs.winehq.org/attachment.cgi?id=71460
Sound files and debug output
In Bridge Baron 13, clicking "Jouer" ("Play") plays a clicking sound. The sound
is fine until its very end, where it pops in a significant fashion. The
original .wav file and a recording of how it's played through Wine are attached
to this report.
This has been tested with wine-staging 7.0-rc3 on Linux Lite 5.6 and
PulseAudio. Setting the OS to WinXP through winecfg had no impact. I got the
debug output suggested by the winehq Wiki on audio and attached it to this
report.
The demo version of the software is available on archive.org and exhibits the
same issue: https://archive.org/details/bb13demo
--
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=51887
Bug ID: 51887
Summary: jshell: Launching JShell execution engine threw: IP
Helper Library GetIpAddrTable function failed
Product: Wine
Version: 6.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: candrews(a)integralblue.com
Distribution: ---
To reproduce the problem:
* Download Java 17 from The Temurin project:
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B3…
* Extract the zip
* Run: `wine64 bin/jshell.exe`
With Wine 6.18, the result is:
Launching JShell execution engine threw: IP Helper Library GetIpAddrTable
function failed
With Wine 4.0.3, the result is:
| Welcome to JShell -- Version 16.0.1
| For an introduction type: /help intro
jshell>
So somewhere between Wine 4.0.3 and 6.18, there was a regression.
To reproduce the issue using Docker, start with either:
* docker run -it alpine:3.13.5 (which will use wine 6.18)
* docker run -it alpine:3.14.2 (which will use wine 4.0.3)
Then at the shell prompt in the running container:
apk add wine && wget -q
"https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17+35/…"
-O /tmp/openjdk-windows.zip && unzip /tmp/openjdk-windows.zip -d /tmp && mv
"/tmp/jdk-17+35" /opt/openjdk-windows && rm /tmp/openjdk-windows.zip && wine64
/opt/openjdk-windows/bin/jshell.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.