https://bugs.winehq.org/show_bug.cgi?id=44486
Bug ID: 44486
Summary: stack overflow in The Witness
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: notasas(a)gmail.com
Distribution: ---
After multisampling patches went in running The Witness with multisampling
enabled results in stack overflow (instead of a solid colored screen):
002b:err:seh:setup_exception stack overflow 1696 bytes in thread 002b eip
000000007bc608f9 esp 0000000000130f70 stack 0x130000-0x131000-0x230000
Bisection returns:
commit f2e614b1f898de74276bef8a612420b6fb2d5b5d
Author: Józef Kucia <jkucia(a)codeweavers.com>
Date: Mon Feb 5 13:13:39 2018 +0100
wined3d: Implement ld2dms instruction.
Can also be reproduced with d3d apitrace here:
https://drive.google.com/file/d/1TXpNn95gRnAxJDfHyeoh2bclcuejXQFk/view?usp=…
--
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=37025
Bug ID: 37025
Summary: Photo Renamer does not work, gives error report
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bart.kuijer(a)ziggo.nl
Created attachment 49197
--> http://bugs.winehq.org/attachment.cgi?id=49197
Error report
Photo Renamer does not work, gives error report
Installation works fine
--
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=40002
Bug ID: 40002
Summary: Control fails to refresh after focus is lost
Product: Wine
Version: 1.9.1
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: leslie_alistair(a)hotmail.com
Distribution: ---
Download these examples
http://www.bcgsoft.com/download/BCGControlBarProDemo.zip
Run the ToolbarEditBox.exe example
Click in the TypeText, Type Number or Calculator boxes
Click on the main Screen.
The text in these Edit boxes aren't updated.
If you Minimize and Maximum the text is redrawn.
--
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=44462
Bug ID: 44462
Summary: Stuttering/Low fps in Unigine Valley
Product: Wine
Version: 3.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: cybermax(a)dexter.no
Distribution: ---
Created attachment 60406
--> https://bugs.winehq.org/attachment.cgi?id=60406
Low fps / stuttering
Very low fps (3-4 fps) in DX11 mode (Ultra) in Unigine Valley.
Benchmark runs fine with wine-staging-2.21.
--
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=42851
Bug ID: 42851
Summary: The BaiduMusic can not be launch with msxml error
Product: Wine
Version: 2.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: hillwoodroc(a)gmail.com
Distribution: ---
Created attachment 57947
--> https://bugs.winehq.org/attachment.cgi?id=57947
BaiduMusic-error.log
Please Download form
http://musicmini.baidu.com/pc/download/BaiduMusic-11407102.exe and try to
install and launch. Then there are many xml error reports and the application
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=44593
Bug ID: 44593
Summary: Improve Wine loader diagnostic output for .NET (IL)
applications in case of 'mscoree.dll' load failures
Product: Wine
Version: 3.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
since commit
https://source.winehq.org/git/wine.git/commitdiff/39c8875ff8aa543eaa50e52db…
("ntdll: Add support for running IL-only .NET executables.") starting a .NET
application without proper mscoree setup results in obscure error message in
terminal, making it very hard for the end user to figure out what's wrong.
* Wine-Mono uninstalled/disabled via various methods (builtin order disabled,
native mscoree preferred, disabled during Wine build time), native .NET not yet
installed -> this is a standard use-case
* broken WINEPREFIX (mscoree improperly installed/Win64/Wow64 issues)
Console output before the change:
--- snip ---
$ wine ./foo.exe
0009:err:module:import_dll Library mscoree.dll (which is needed by
L"C:\\Program Files\\FooBar\\foo.exe") not found
0009:err:module:attach_dlls Importing dlls for L"C:\\Program
Files\\FooBar\\foo.exe" failed, status c0000135
--- snip ---
Console output after the change:
---- snip ---
$ wine ./foo.exe
0009:err:module:attach_dlls Importing dlls for L"C:\\Program
Files\\FooBar\\foo.exe" failed, status c0000135
---- snip ---
I suggest to add an ERR to hint it's actually 'mscoree' module load failure to
help end users/triagers diagnosing.
Source:
jttps://source.winehq.org/git/wine.git/blob/39c8875ff8aa543eaa50e52db0c5467…
--- snip ---
895 static NTSTATUS fixup_imports_ilonly( WINE_MODREF *wm, LPCWSTR load_path,
void **entry )
896 {
897 static const WCHAR mscoreeW[] =
{'m','s','c','o','r','e','e','.','d','l','l',0};
...
910 prev = current_modref;
911 current_modref = wm;
912 if (!(status = load_dll( load_path, mscoreeW, 0, &imp ))) wm->deps[0]
= imp;
913 current_modref = prev;
914 if (status) return status;
915
916 TRACE( "loaded mscoree for %s\n",
debugstr_w(wm->ldr.FullDllName.Buffer) );
...
--- snip ---
$ wine --version
wine-3.2-168-gc073701d02
Regards
--
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=7525
--- Comment #10 from Hin-Tak Leung <htl10(a)users.sourceforge.net> ---
I unzip'ed the exe then unshield data1.cab inside.
$ find . -type f -name '*.dll' -exec grep -l -i EngComputeGlyphSet {} \;
./Printer_Driver_NT_Common_PFR_Win2K/PFRNTMPM.dll
./Printer_Driver_NT_Common_PFR_WinNT4/PFRNTMPM.dll
./Printer_Driver_NT_Common_Sfdm_Files_Win2K/3/PFXNTMPM.dll
./Printer_Driver_NT_Common_Sfdm_Files_Win2K/PFXNTMPM.dll
./Printer_Driver_NT_Common_Sfdm_Files_WinNT4/2/PFXNTMPM.dll
./Printer_Driver_NT_Common_Sfdm_Files_WinNT4/PFXNTMPM.dll
./Printer_Driver_W2k_Common_PFR_Files/PFRNTMPM.dll
./Printer_Driver_W2k_Common_Sfdl2_Files/PFXNTMPM.dll
Also, for GDI printer, you need to turn off "enhanced meta files" or something
under the print driver panel for the host to actually use the driver. Otherwise
the host just do WMF spooling, and does not use the driver until it interacts
with the hard ware.
I think this needs to be re-opened, but I don't have the rights.
--
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.