https://bugs.winehq.org/show_bug.cgi?id=49889
Bug ID: 49889
Summary: wineserver shows failed assertion on shutdown
Product: Wine
Version: 5.17
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: bunglehead(a)gmail.com
Regression SHA1: 3b3c8619c852513f57ce7388557c8451691fbe00
Distribution: ---
On prefix shutdown wineserver consistently shows:
wineserver: ../../wine-git/server/object.c:407: release_object: Assertion
`obj->refcount' failed.
This appears to be caused by recent change:
3b3c8619c852513f57ce7388557c8451691fbe00 is the first bad commit
commit 3b3c8619c852513f57ce7388557c8451691fbe00
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Sep 23 15:34:10 2020 +0200
server: Keep permanent objects on the standard object list.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
server/object.c | 47 ++++++-----------------------------------------
server/object.h | 5 +++--
2 files changed, 9 insertions(+), 43 deletions(-)
--
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=49647
Bug ID: 49647
Summary: wine 5.14 build fails in winegstreamer on Ubuntu 16.04
and Debian 9
Product: Wine
Version: 5.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winegstreamer
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
Created attachment 67848
--> https://bugs.winehq.org/attachment.cgi?id=67848
Debian 9 failed OBS build log
Building the WineHQ packages on the OBS, newer distros succeeded but the Debian
9 and Ubuntu 16.04 builds both failed in the same way:
[ 998s] gstdemux.c: In function 'amt_to_gst_caps_video':
[ 998s] gstdemux.c:416:5: error: invalid use of void expression
[ 998s] if (!gst_video_info_set_format(&info, format,
vih->bmiHeader.biWidth, vih->bmiHeader.biHeight))
[ 998s] ^~
[ 998s] Makefile:257: recipe for target 'gstdemux.o' failed
[ 998s] make[2]: *** [gstdemux.o] Error 1
[ 998s] make[2]: Leaving directory
'/usr/src/packages/BUILD/dlls/winegstreamer'
[ 998s] Makefile:9028: recipe for target 'dlls/winegstreamer' failed
[ 998s] make[1]: *** [dlls/winegstreamer] Error 2
[ 998s] make[1]: *** Waiting for unfinished jobs....
I'm attaching the OBS Debian 9 build log.
--
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=45433
Bug ID: 45433
Summary: dark souls 3: cannot change resolution in fullscreen
mode
Product: Wine
Version: 3.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: general(a)sarifria.x10.bz
Distribution: ---
when making a fresh graphics config file (let's say i perhaps deleted it, or
it's a fresh install) it will default to 1920x1080. upon a second boot, the
game will now switch to 800x600 resolution. in both cases, any attempts to
alter the resolution will fail, it does not even attempt to change it. windowed
mode works fine, however when you subsequently switch back to fullscreen it
will change back to 800x600 (even at 1920x1080). attached is a log where i
attempt to change in fullscreen, change in windowed mode, then attempt to
retain that resolution by switching back to fullscreen.
--
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=37491
Bug ID: 37491
Summary: wineconsole requires/uses TERM environment variable
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: luke-jr+winebugs(a)utopios.org
Distribution: ---
For some reason, wineconsole requires TERM to be set to a valid value. However,
Windows ncurses requires TERM to be unset, clear, or "#win32con" or it starts
talking vt100, which wineconsole doesn't understand.
--
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=49834
Bug ID: 49834
Summary: 45a63e5b3ce0e5d7fcc55ce57f315086b87f8ad7 breaks binary
compatibility with 5.0 on passing main() argc
Product: Wine
Version: 5.9
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression, source, testcase
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
CC: julliard(a)winehq.org
Regression SHA1: 45a63e5b3ce0e5d7fcc55ce57f315086b87f8ad7
Distribution: ---
Created attachment 68172
--> https://bugs.winehq.org/attachment.cgi?id=68172
test winelib module (source + binary)
I have a private winelib module compiled with stable wine-5.0.2 branch.
Recently this module was broken after upgrading Wine.
I've attached test with source and pre-compiled binary using wine-5.0.2.
When running with wine-5.0.2 it looks like this:
$ wine test.exe.so
Starting (argc = 1, argv = 0x113120)...
Done.
$ wine test.exe.so -v
Starting (argc = 2, argv = 0x1132e8)...
verbose is on
Done.
When running with wine-5.17 argc passed to main() is no longer valid,
which makes the app try to parse not existing command like arguments:
$ wine test.exe.so -v
Starting (argc = 3, argv = 0x143a10)...
verbose is on
Done.
$ wine test.exe.so
Starting (argc = 2, argv = 0x110f48)...
wine: Unhandled page fault on read access to 00000000 at address 7ECF30AF
(thread 0024), starting debugger...
couldn't load main module (2)
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x7ecf30af).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7ecf30af ESP:0031fed0 EBP:0031fee8 EFLAGS:00010202( R- -- I - - - )
EAX:00000000 EBX:7ecf6000 ECX:00000028 EDX:f7ee5890
ESI:00000002 EDI:00110f48
Stack dump:
0x0031fed0: 00110f50 00110f48 0031ff00 00000002
0x0031fee0: 00110f48 00110f48 0031ff38 7ecf333b
0x0031fef0: 00000000 00000000 00110f4c 7ecf333b
0x0031ff00: 00000002 00110f48 00000000 00000000
0x0031ff10: 00000000 7dd4abb0 0000000d 00110f48
0x0031ff20: 00000000 00000000 0031ff48 7ffde000
Backtrace:
=>0 0x7ecf30af (0x0031fee8)
1 0x7ecf333b (0x0031ff38)
2 0x7b655a70 in kernel32 (+0x35a6f) (0x0031ff58)
3 0x7bc7cfd7 (0x0031ff6c)
4 0x7bc7d22a (0x0031ffec)
0x7ecf30af: cmpb $0x2d,0x0(%eax)
Modules:
Module Address Debug info Name (3 modules)
PE 7b020000-7b027000 Deferred kernelbase
PE 7b620000-7b7dc000 Export kernel32
PE 7bc20000-7bc24000 Deferred ntdll
The regression is cased by
45a63e5b3ce0e5d7fcc55ce57f315086b87f8ad7 is the first bad commit
commit 45a63e5b3ce0e5d7fcc55ce57f315086b87f8ad7
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Sun May 17 11:44:16 2020 +0200
ntdll: Store main() arguments in the Unix library.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
First Wine version released with this commit is wine-5.9.
--
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=49770
Bug ID: 49770
Summary: Firestorm viewer regression after 5.13?
Product: Wine
Version: 5.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: randrianasulu(a)gmail.com
Distribution: ---
I have older (by now) firestorm Viewer (Second Life / Open Simulator client)
installed in my wine prefix. It was working in 5.13, but in 5.15 and 5.16 it
crashes:
invalid adapt mode.
24ertex@@0B2?3?3?3?3?34555!535|5/68o8®9Y:?;X<O<<=?=,>?>u>U?I?0024:err:seh:NtRaiseException
Unhandled exception code c0000005 flags 0 addr 0x175054b
it even crash when I try to get help:
wine Firestorm-Release.exe -h
but slightly differently:
--purge Delete files in the cache.
--qa ib/javaaC
_h@p@pTHORITY=/home/guest/.XauthoritycISUAL=mceditu
pR▒_!USE!E3¬X·!P?!E?°Pc!Hi!2020-09-02T23:22:51Z INFO #CRASHREPORT#
win_crash_logger/llcrashloggerwindows.cpp(318)
LLCrashLoggerWindows::processingLoop : Client has connected!
0024:err:seh:NtRaiseException Unhandled exception code c0000005 flags 0 addr
0x175054b
and this makes console (inside Konsole terminal emulator) not very well looking
(try midnight commander) until I 'reset' it by typing reset.
Does this mean it messes up environment variables?
What kind of logs I must create? (sounds like display/adapter regression, but
who knows, may be this message mean something else).
--
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=49765
Bug ID: 49765
Summary: slingplayer crashes after starting
Product: Wine
Version: 5.0.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: apphelp
Assignee: wine-bugs(a)winehq.org
Reporter: nick-n1917(a)protonmail.com
Distribution: ---
Created attachment 68069
--> https://bugs.winehq.org/attachment.cgi?id=68069
backtrace
The app SlingPlayer reports an error after I start the app. That's all I know
--
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=43107
Bug ID: 43107
Summary: The Witcher 3 fails to detect dx11 - registry
dx11>opengl applied
Product: Wine
Version: 2.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: kallekadakas(a)gmail.com
Distribution: ---
Created attachment 58299
--> https://bugs.winehq.org/attachment.cgi?id=58299
witcher3-startup-log
Greetings,
The Witcher 3 (steam version) used to work fine yesterday, however once
installing the wine-2.9-staging version, it now fails to detect DirectX11
support upon startup. (attached picture)
Reverted back to non-staging wine2.9 and the issue now happens with that as
well.
Created a fresh prefix, applied the registry fix to render dx11 calls in opengl
and limit the rendering to opengl4.5. Tested with both staging and non-staging
wine2.8, the issue persists.
Attached the logs from the moment when starting the game.
--
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=37644
Bug ID: 37644
Summary: .NET 3.5 crash when running System.Console.Clear()
Product: Wine
Version: 1.7.30
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: james(a)jameswarner.us
Distribution: ---
Created attachment 50099
--> https://bugs.winehq.org/attachment.cgi?id=50099
Example program, source code to said program and output log
When running System.Console.Clear() under .NET 3.5 in WINE (installed in a
clean .wine through Winetricks), it will crash with:
Unhandled Exception: System.IO.IOException: Invalid handle.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.Console.GetBufferInfo(Boolean throwOnNoConsole, Boolean&
succeeded)
at System.Console.Clear()
This can be reproduced by running System.Console.Clear() under any application
in .NET 3.5.
Attached is a demo application to reproduce this, the source code to produce
this issue and the log generated.
WINE version: 1.7.30 under Debian (sid) x86.
--
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=36960
Bug ID: 36960
Summary: Avencast: Rise of the Mage fails to start
(D3DXCreateTextureFromFileA failed)
Product: Wine
Version: 0.9.48.
Hardware: x86
URL: http://www.strategyinformer.com/pc/avencast/demo/17710
.html
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Blocks: 10325
Created attachment 49077
--> https://bugs.winehq.org/attachment.cgi?id=49077
+d3dx,+d3d trace
While looking at old bugs (bug 10325), I noticed that Avencast has a problem
with d3dx:
"DXC_Gfx: D3DXCreateTextureFromFileA failed: D3DERR_INVALIDCALL
(file:graphics\\gui\\windows\\gui_energybar02_frame.tga)"
terminal shows:
fixme:d3d:wined3d_device_set_software_vertex_processing device 0x169430,
software 0 stub!
fixme:d3d:swapchain_gl_present WINED3D_SWAP_EFFECT_FLIP not implemented.
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:d3dx:D3DXCreateTextureFromFileInMemoryEx Texture creation failed.
doing winetricks d3dx9 let's the game start without that error. I've attached a
+d3d,+d3dx trace
austin@aw25 ~ $ du -h avencastdemo.exe
309M avencastdemo.exe
austin@aw25 ~ $ sha1sum avencastdemo.exe
704c0f3fd05405e00814282cc6247401b2884574 avencastdemo.exe
austin@aw25 ~ $ wine --version
wine-1.7.22
--
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.