http://bugs.winehq.org/show_bug.cgi?id=33500
Bug #: 33500
Summary: Creo Elements/Direct Modeling Express 4.0 fails to
install (msi script custom action return value
translation too restrictive)
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
while revisiting bug 27827 it seems the app installer now fails.
The translation of the return value of a vbscript function called in msi custom
action is the culprit.
"OSDM.msi" gets extracted from
"Creo-Elements-Direct-Modeling-Express4-M010-32-setup-EN.exe" and can be run
directly.
--- snip ---
$ wine msiexec -i OSDM.msi
...
0028:trace:msi:ScriptThread custom action (28) started
0028:trace:msi:ACTION_CallScript function L"ExportProperties", script L"option
explicit\r\non error resume next\r\n\r\nfunction ExportProperties( )\r\n\r\n
Dim svLang\r\n Dim svInstallLang\r\n Dim svLanguageID\r\n \r\n On Error
Resume Next\r\n\r\n svLang = Session.Property( \"UserLanguageID\" )\r\n\r\n
Select Case svLang\r\n\r\n Case \"1031\", \"2055\", \"307"...
...
0028:trace:msi:MsiActiveScriptSite_OnEnterScript (0x4dfc50)
...
0028:trace:msi:MsiActiveScriptSite_OnLeaveScript (0x4dfc50)
0028:trace:msi:MsiActiveScriptSite_OnStateChange State: Connected.
0028:trace:msi:call_script Calling function L"ExportProperties"
...
0028:trace:msi:MsiActiveScriptSite_OnEnterScript (0x4dfc50)
...
0028:trace:msi:MsiActiveScriptSite_OnLeaveScript (0x4dfc50)
0028:Call oleaut32.VariantChangeType(00a7e848,00a7e848,00000000,00000003)
ret=7ecfc53b
0028:Ret oleaut32.VariantChangeType() retval=00000000 ret=7ecfc53b
0028:Call oleaut32.VariantClear(00a7e848) ret=7ecfc570
0028:Ret oleaut32.VariantClear() retval=00000000 ret=7ecfc570
0028:trace:msi:MsiActiveScriptSite_OnStateChange State: Disconnected.
0028:trace:msi:MsiActiveScriptSite_OnStateChange State: Initialized.
0028:trace:msi:MsiActiveScriptSite_OnStateChange State: Closed.
...
0028:Ret ole32.CoUninitialize() retval=00000000 ret=7ecfc6db
0028:trace:msi:ACTION_CallScript script returned 1603
0028:trace:msi:MsiCloseHandle 1
0028:trace:msi:ScriptThread custom action (28) returned 1603
0028:trace:msi:MsiCloseAllHandles
...
0024:err:msi:ITERATE_Actions Execution halted, action L"ExportProperties"
returned 1603
--- snip ---
The embedded vbscript source code of "ExportProperties" function:
--- snip ---
option explicit
on error resume next
function ExportProperties( )
Dim svLang
Dim svInstallLang
Dim svLanguageID
On Error Resume Next
svLang = Session.Property( "UserLanguageID" )
Select Case svLang
Case "1031", "2055", "3079", "4103", "5127"
svInstallLang = "german"
svLanguageID = "1031"
Case "1033", "2057", "3081", "4105", "5129", "6153", _
"7177", "8201", "9225", "10249", "11273"
svInstallLang = "english"
svLanguageID = "1033"
Case "1034", "2058", "3082", "4106", "5130", "6154", "7178", "8202",
"9226", _
"10250", "11274", "12298", "13322", "14346", "15370", "16394",
"17418", _
"18442", "19466", "20490"
svInstallLang = "spanish"
svLanguageID = "1034"
Case "1036", "2060", "3084", "4108", "5132"
svInstallLang = "french"
svLanguageID = "1036"
Case "1040", "2064"
svInstallLang = "italian"
svLanguageID = "1040"
Case "1041"
svInstallLang = "japanese"
svLanguageID = "1041"
Case Else
svInstallLang = svLang
svLanguageID = svLang
End Select
Session.Property( "InstallLanguage" ) = svInstallLang
Session.Property( "GroupLanguageID" ) = svLanguageID
ExportProperties = 0
End Function
--- snip ---
"ExportProperties" explicitly returns "0" (msiDoActionStatusNoAction), no other
code path.
Wine source:
http://source.winehq.org/git/wine.git/blob/3b0179cbde19e650804cb3b5a8185762…
--- snip ---
279 DWORD call_script(MSIHANDLE hPackage, INT type, LPCWSTR script, LPCWSTR
function, LPCWSTR action)
280 {
281 HRESULT hr;
282 IActiveScript *pActiveScript = NULL;
283 IActiveScriptParse *pActiveScriptParse = NULL;
284 MsiActiveScriptSite *scriptsite;
285 IDispatch *pDispatch = NULL;
286 DISPPARAMS dispparamsNoArgs = {NULL, NULL, 0, 0};
287 DISPID dispid;
288 CLSID clsid;
289 VARIANT var;
290 DWORD ret = ERROR_INSTALL_FAILURE;
291
292 CoInitialize(NULL);
...
344 /* Call a function if necessary through the IDispatch interface */
345 if (function != NULL && strlenW(function) > 0) {
346 TRACE("Calling function %s\n", debugstr_w(function));
347
348 hr = IActiveScript_GetScriptDispatch(pActiveScript, NULL,
&pDispatch);
349 if (FAILED(hr)) goto done;
350
351 hr = IDispatch_GetIDsOfNames(pDispatch, &IID_NULL, (WCHAR
**)&function, 1,LOCALE_USER_DEFAULT, &dispid);
352 if (FAILED(hr)) goto done;
353
354 hr = IDispatch_Invoke(pDispatch, dispid, &IID_NULL,
LOCALE_USER_DEFAULT, DISPATCH_METHOD, &dispparamsNoArgs, &var, NULL, NULL);
355 if (FAILED(hr)) goto done;
356
357 /* Check return value, if it's not IDOK we failed */
358 hr = VariantChangeType(&var, &var, 0, VT_I4);
359 if (FAILED(hr)) goto done;
360
361 if (V_I4(&var) == IDOK)
362 ret = ERROR_SUCCESS;
363 else ret = ERROR_INSTALL_FAILURE;
364
365 VariantClear(&var);
366 } else {
367 /* If no function to be called, MSI behavior is to succeed */
368 ret = ERROR_SUCCESS;
369 }
...
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa371254%28v=vs.85%…
--- quote ---
Custom actions written in JScript or Visual Basic, Scripting Edition (VBScript)
can call an optional function. These functions must return one of the values
shown in the following table.
Return value Value Description
msiDoActionStatusNoAction 0 Action not executed.
msiDoActionStatusSuccess IDOK = 1 Action completed successfully.
msiDoActionStatusUserExit IDCANCEL = 2 Premature termination by user.
msiDoActionStatusFailure IDABORT = 3 Unrecoverable error. Returned if
there is an error during parsing or execution of the JScript or VBScript.
msiDoActionStatusSuspend IDRETRY = 4 Suspended sequence to be resumed
later.
msiDoActionStatusFinished IDIGNORE = 5 Skip remaining actions. Not an
error.
Note that Windows Installer translates the return values from all actions when
it writes the return value into the log file. For example, if the action return
value appears as 1 (one) in the log file, this means that the action returned
msiDoActionStatusSuccess. For more information about this translation see
Logging of Action Return Values.
To return a value other than success from a script custom action, you must use
a function target for the custom action. The target function is specified in
the Target column of the CustomAction Table.
--- quote ---
Translating everything not "IDOK" to ERROR_INSTALL_FAILURE seems overly
restrictive.
$ du -sh Creo-Elements-Direct-Modeling-Express4-M010-32-setup-EN.exe
157M Creo-Elements-Direct-Modeling-Express4-M010-32-setup-EN.exe
$ sha1sum Creo-Elements-Direct-Modeling-Express4-M010-32-setup-EN.exe
4b77817ac55bf4cbbd85f02949d8d97e9a0ca19a
Creo-Elements-Direct-Modeling-Express4-M010-32-setup-EN.exe
$ wine --version
wine-1.5.29-38-g8e4317c
Regards
--
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=15549
Summary: Colobot Demo installer does not fully redraw
installation window during install progress phase
Product: Wine
Version: 1.1.5
Platform: PC
URL: http://www.ceebot.com/download/demo/colobotdemo17e.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=16531)
--> (http://bugs.winehq.org/attachment.cgi?id=16531)
Colobot Demo installer window screenshot
With today's Git (wine-1.1.5-507-ge20ef50), in the process of testing bug
13932, I noticed that when the installer is at the file copy progress phase,
some elements of the window are not redrawn properly. A screenshot is attached.
--
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=23847
Summary: ntdll:
NtQuerySystemInformation(SYSTEM_PROCESSOR_PERFORMANCE_
INFORMATION) should provide NT-style 100ns units (.NET
1.x CLR)
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://www.microsoft.com/DownLoads/details.aspx?family
id=D7158DEE-A83F-4E21-B05A-009D06457787
OS/Version: Linux
Status: NEW
Keywords: dotnet, download, Installer
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after bug 17084 (.NET 1.0: imagehlp.ImageGetDigestStream needs more flesh
(assembly registration fails)) was fixed, the installer still fails.
The first blocker is now the presence of some .NET registry keys that ought to
help Mono but break the MS installer itself (path to v1.0.xxx Microsoft CLR
core library is incorrectly constructed, leading to mscorwks.dll load failure).
You can work around by deleting the following key before running the installer:
--- snip ---
$ wine reg delete "HKLM\Software\Microsoft\.NETFramework"
--- snip ---
Near the end, the installer spawns "regasm.exe" tool several times to register
various assemblies.
Unfortunately the tool crashes with division by zero (+tid,+seh,+relay):
--- snip ---
...
0040:Call ntdll.NtQuerySystemInformation(00000008,031ce960,00000060,00000000)
ret=792cf160
0040:Ret ntdll.NtQuerySystemInformation() retval=00000000 ret=792cf160
0040:trace:seh:raise_exception code=c0000094 flags=0 addr=0x79243177
ip=79243177 tid=0040
0040:trace:seh:raise_exception eax=00000000 ebx=ffffffff ecx=00000000
edx=00000000 esi=00000022 edi=00000001
0040:trace:seh:raise_exception ebp=031ce9f0 esp=031ce940 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010246
--- snip ---
Interestingly there are other calls from the same addresses that don't crash:
--- snip ---
0020:Call ntdll.NtQuerySystemInformation(00000008,0320e960,00000060,00000000)
ret=792cf160
0020:trace:ntdll:NtQuerySystemInformation
(0x00000008,0x320e960,0x00000060,(nil))
000d:Call KERNEL32.SwitchToThread() ret=7929a604
000d:Ret KERNEL32.SwitchToThread() retval=00000001 ret=7929a604
0020:Ret ntdll.NtQuerySystemInformation() retval=00000000 ret=792cf160
0020:Call KERNEL32.Sleep(000001f4) ret=792d00bc
--- snip ---
Using additional "printf" style debugging to dump kernel+user+idle jiffies I
noticed the crashes happen when the values accumulated only small changes in
capture intervals.
It seems the CLR employs some kind of cpu resource utilization calculation
(using certain capture intervals) that breaks if the ticks/time units increment
fall below some threshold.
Windows NT accounts SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION values in 100ns
units.
See: http://msdn.microsoft.com/en-us/library/ms724509.aspx
I fixed dlls/ntdll/nt.c:NtQuerySystemInformation(
SystemProcessorPerformanceInformation class) to convert jiffies to NT-style
100-ns units and it helped to keep the .NET CLR CPU usage calculation happy and
to not let the regasm tool crash anymore (installer succeeded).
Regards
--
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=21622
Summary: mscoree.dll.DllUnregisterServer stub needed (.NET 1.0
installer)
Product: Wine
Version: 1.1.38
Platform: x86
URL: http://www.microsoft.com/DownLoads/details.aspx?family
id=D7158DEE-A83F-4E21-B05A-009D06457787
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
due to recent changes in msi (SelfUnregModules standard action is now
implemented and executed), .NET 1.0 installer shows unhandled regsvr32
exception dialog (not critical to installer).
A stub is needed for mscoree.dll DllUnregisterServer():
--- snip ---
002f:trace:msi:ITERATE_SelfUnregModules Unregistering L"regsvr32.exe /u
\"C:\\windows\\system32\\mscoree.dll\""
002f:Call KERNEL32.CreateProcessW(00000000,006fe860 L"regsvr32.exe /u
\"C:\\windows\\system32\\mscoree.dll\"",00000000,00000000,00000000,00000000,00000000,621a0cd2
L"C:\\",0033e578,0033e568) ret=6212f676
...
0039:Call KERNEL32.RaiseException(80000100,00000001,00000002,0033fd98)
ret=200151f1
0039:trace:seh:raise_exception code=80000100 flags=1 addr=0x7b835dc2
ip=7b835dc2 tid=0039
0039:trace:seh:raise_exception info[0]=20015260
0039:trace:seh:raise_exception info[1]=2001542f
wine: Call from 0x7b835dc2 to unimplemented function
mscoree.dll.DllUnregisterServer, aborting
...
--- snip ---
The .NET 1.0 installer doesn't run until the end due to long standing bug 17084
(which is a pity as patch exists for some time now).
Regards
--
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=30197
Bug #: 30197
Summary: Restaurant Empire crashes during introduction
animation
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)pmc.com.pt
Classification: Unclassified
Created attachment 39424
--> http://bugs.winehq.org/attachment.cgi?id=39424
Crash backtrace
Restaurant empire crashes during the introduction animation. See attached
backtrace.
Restaurante Empire version 1.2.1:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=15562
To work around the crash, press the ESCape key to skip the introduction
animation and the game will continue to run.
--
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=35362
Bug ID: 35362
Summary: Aeria Games/Aura Kingdom launcher account signin fails
due to IHTMLDocument2.GetActiveElement stub
Product: Wine
Version: 1.7.10
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says ...
Prerequisite: 'winetricks -q dotnet40'
--- snip ---
$ pwd
/home/focht/.wine/drive_c/AeriaGames/AuraKingdom
$ wine ./aeria_launcher.exe
...
fixme:mshtml:HTMLDocument_get_activeElement (0x9fbe358)->(0x33e438)
The method or operation is not implemented.
System.NotImplementedException: The method or operation is not implemented.
at
System.Windows.Forms.UnsafeNativeMethods.IHTMLDocument2.GetActiveElement()
at System.Windows.Forms.HtmlDocument.get_ActiveElement()
at AI.Controls.WebBrowserEx.PreProcessMessage(Message& msg)
at System.Windows.Forms.Control.PreProcessControlMessageInternal(Control
target, Message& msg)
at System.Windows.Forms.Control.PreProcessControlMessage(Message& msg)
at
System.Windows.Forms.Integration.ApplicationInterop.ThreadMessageFilter(MSG&
msg, Boolean& outHandled)
at System.Windows.Interop.ComponentDispatcherThread.RaiseThreadMessage(MSG&
msg)
at System.Windows.Interop.ComponentDispatcher.RaiseThreadMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Window.ShowHelper(Object booleanBox)
at System.Windows.Window.Show()
at System.Windows.Window.ShowDialog()
at AI.MainWindow.OpenLoginScreen(EventHandler`1 onLoginCompleted)
at AI.AppController.OpenLoginScreen(EventHandler`1 onLoginCompleted)
at AI.LoginPanel.onClick(Object sender, RoutedEventArgs e)
...
--- snip ---
Source:
http://source.winehq.org/git/wine.git/blob/ff9bbe372128eb42f921e393b80c7924…
--- snip ---
186 static HRESULT WINAPI HTMLDocument_get_activeElement(IHTMLDocument2
*iface, IHTMLElement **p)
187 {
188 HTMLDocument *This = impl_from_IHTMLDocument2(iface);
189 FIXME("(%p)->(%p)\n", This, p);
190 eturn E_NOTIMPL;
191 }
--- snip ---
$ sha1sum aurakingdom_us_downloader.exe
b31bb993d30e87f59b6c211bacd49eb610075f8a aurakingdom_us_downloader.exe
$ du -sh aurakingdom_us_downloader.exe
572K aurakingdom_us_downloader.exe
$ wine --version
wine-1.7.10-343-g770d09d
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.
http://bugs.winehq.org/show_bug.cgi?id=25526
Summary: Aura - http://www.umopit.ru/AuraEng.htm
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: darex7(a)o2.pl
Hello - I use Mandriva Linux 2010 Gnome with wine 1.2 (Aura application works
correctly from 3 to 10 minutes and then pops up an error message: photo) please
help.
--
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=24370
Summary: kernel32: provide GetSystemDEPPolicy stub (Microsoft
EMET v2)
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
"Enhanced Mitigation Experience Toolkit v2" from Microsoft requires this stub.
Although not really useful as of now (missing application security shims), it
might be of benefit later.
--- snip ---
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00001388,(nil),0x000b,0x000000f6,0x3009a1b4,0x5dc624):
stub
err:eventlog:ReportEventW L"clr20r3"
err:eventlog:ReportEventW L"emet_conf.exe"
err:eventlog:ReportEventW L"2.0.0.0"
err:eventlog:ReportEventW L"4c6aef82"
err:eventlog:ReportEventW L"mitigationinterface"
err:eventlog:ReportEventW L"2.0.0.1"
err:eventlog:ReportEventW L"4c8924d5"
err:eventlog:ReportEventW L"6f"
err:eventlog:ReportEventW L"182"
err:eventlog:ReportEventW L"system.entrypointnotfound"
err:eventlog:ReportEventW L"NIL"
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
...
Unhandled Exception: System.EntryPointNotFoundException: Unable to find an
entry point named 'GetSystemDEPPolicy' in DLL 'kernel32.dll'.
at MitigationInterface.Kernel32.GetSystemDEPPolicy()
at MitigationInterface.SysMitigation_DEP..ctor(OSVERSIONINFOEX OsInfoEx,
Boolean EnableUnsafeSettings)
at MitigationInterface.SystemMitigations..ctor()
at ConsoleApp.Program.Main(String[] args)
wine: Unhandled exception 0xe0434f4d at address 0x7b836f02 (thread 0009),
starting debugger...
Unhandled exception: 0xe0434f4d in 32-bit code (0x7b836f02).
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/bb736298.aspx
"Enhanced Mitigation Experience Toolkit v2.0" Download:
https://www.microsoft.com/downloads/en/details.aspx?FamilyID=c6f0a6ee-05ac-…
Needs .NET 2.0 Framework as prerequisite (e.g. winetricks dotnet20)
Regards
--
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=24371
Summary: apphelp: provide application shim and
apphelp.SdbCreateDatabase stub (Microsoft EMET v2 and
other tools)
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
follow up of bug 24370
Microsoft EMET v2 tools crashes upon load due to missing apphelp
dll/SdbCreateDatabase import.
It seems other MS tools need this dll as well.
Bug 16093 "MS AppLocale installer" also talked about this
(http://bugs.winehq.org/show_bug.cgi?id=16093#c1
):
--- quote ---
it fails as it can't find a dll called apphelp.dll (whatever that may be)
After copying it from my windowspartition it crashes into
wine: Call from 0x7b843650 to unimplemented function
KERNEL32.dll.BaseFlushAppcompatCache, aborting
Maybe a simple stubbed apphelp.dll could be of use
--- quote ---
Console log:
--- snip ---
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00001388,(nil),0x000b,0x000000f8,0x3009a1b4,0x5dc624):
stub
err:eventlog:ReportEventW L"clr20r3"
err:eventlog:ReportEventW L"emet_conf.exe"
err:eventlog:ReportEventW L"2.0.0.0"
err:eventlog:ReportEventW L"4c6aef82"
err:eventlog:ReportEventW L"mitigationinterface"
err:eventlog:ReportEventW L"2.0.0.1"
err:eventlog:ReportEventW L"4c8924d5"
err:eventlog:ReportEventW L"95"
err:eventlog:ReportEventW L"f5"
err:eventlog:ReportEventW L"system.dllnotfoundexception"
err:eventlog:ReportEventW L"NIL"
...
Unhandled Exception: System.DllNotFoundException: Unable to load DLL
'apphelp.dll': Exception from HRESULT: 0x8007007E
at MitigationInterface.Apphelp.SdbCreateDatabase(String pwszPath, PATH_TYPE
eType)
at MitigationInterface.ShimUtil..ctor(Arch SysArch)
at MitigationInterface.ApplicationMitigations..ctor(SystemMitigations
SysMits)
at ConsoleApp.Program.Main(String[] args)
wine: Unhandled exception 0xe0434f4d at address 0x7b836fa2 (thread 0009),
starting debugger...
Unhandled exception: 0xe0434f4d in 32-bit code (0x7b836fa2).
--- snip ---
Info: http://technet.microsoft.com/en-us/library/bb490820.aspx
For a start, provide 'apphelp.dll' with SdbCreateDatabase() stub.
Regards
--
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=16093
Summary: MS AppLocale installer fails
Product: Wine
Version: 1.1.8
Platform: Other
URL: http://www.microsoft.com/globaldev/tools/apploc.mspx
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Applocate is a handy way to run apps in a non-system locale. See
http://alcahest.club.fr/perso/apploc/applocale.html
for a description and screenshots.
(Incidentally, there is a similar utility called Winelocale,
see http://cinnamonpirate.com/hobbies/software/winelocale/
Its installation instructions are quite demanding,
and it probably only works for one app at a time,
unlike Applocate. If I understand correctly, anyway.)
Installing applocate on wine fails; +msi shows that the failure
comes after running some external executable:
trace:msi:HANDLE_CustomType2 executing exe L"C:\\windows\\temp\\msic34.tmp -q
C:\\windows\\\\almain.sdb"
...
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned
1627
--
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=24196
Summary: oleaut32: typelib registration should not fail
bitness-neutral assemblies (32-bit typelib wrapped in
64-bit PE, x64 .NET 2.0 installer)
Product: Wine
Version: 1.3.1
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
another x64 .NET Framework 2.0 installer bug.
The typelib registration fails for some assemblies:
--- snip ---
...
002c:Call KERNEL32.CreateProcessA(00000000,7fffec16f650
"\"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\regtlibv12.exe\"
\"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Drawing.tlb\"",00000000,00000000,7fff00000001,00000000,00000000,00000000,7fffec8edfe8,7fffec8eb9e0)
ret=4fc035780
...
002e:Call oleaut32.LoadTypeLib(7ffff143f880
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Drawing.tlb",7ffff143f870)
ret=004027bf
...
002e:Call KERNEL32.LoadLibraryExW(7ffff143f360
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Drawing.tlb",00000000,0000000b)
ret=7ffff105ffb0
002e:Ret KERNEL32.LoadLibraryExW() retval=7fffefad0001 ret=7ffff105ffb0
...
002e:Ret oleaut32.LoadTypeLib() retval=00000000 ret=004027bf
002e:Call oleaut32.RegisterTypeLib(7ffff74d30d0,7ffff143f880
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Drawing.tlb",00000000)
ret=00402808
...
002e:Ret oleaut32.RegisterTypeLib() retval=800288bd ret=00402808
...
002c:Call msi.MsiRecordSetStringW(00000005,00000000,7fffec8ec620
L"RegisterTypeLib of
C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Drawing.tlb failed
: 800288bd") ret=4fc0358bd
--- snip ---
The PE file containing typelib resources "System.Drawing.tlb" is a PE64 binary.
Dumping the typelib resource reveals:
--- snip ---
Offset 0 1 2 3 4 5 6 7 8 9 A B C D E F Ascii
000002B0 4D 53 46 54 02 00 01 00 00 00 00 00 09 04 00 00 MSFT.........
000002C0 00 00 00 00 41 00 00 00 02 00 00 00 00 00 00 00 ....A..........
000002D0 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...............
--- snip ---
flags: 0x41 -> indicates the typelib itself is 32 bit (SYSKIND = SYS_WIN32)
The folder "c:\windows\Microsoft.NET\Framework64\v2.0.50727\" contains
assemblies with following characteristics:
64-bit PE + 64 bit typelib part (flags = 0x43 -> SYSKIND = SYS_WIN64)
64-bit PE + 32 bit typelib part (flags = 0x41 -> SYSKIND = SYS_WIN32)
I verified that Wine msi correctly installs them into their appropriate 32 bit
and 64 bit folders.
The 32-bit counterparts from "c:\windows\Microsoft.NET\Framework\v2.0.50727\"
are all:
32-bit PE + 32 bit typelib part (flags = 0x41 -> SYSKIND = SYS_WIN32)
===
What causes the embedded typelib to be 32-bit?
Well, the .NET assemblies these typelibs belong to are flagged as "MSIL"
assemblies.
These are bitness-neutral assemblies that are portable and can run under any
platform.
When you look at 64-bit ->
"c:\windows\Microsoft.NET\Framework64\v2.0.50727\RedistList\FrameworkList.xml":
--- snip ---
<File AssemblyName="System.Drawing" Version="2.0.0.0"
PublicKeyToken="b03f5f7f11d50a3a" Culture="neutral"
ProcessorArchitecture="MSIL" FileVersion="2.0.50727.42" InGAC="true" />
--- snip ---
Example for bitness-aware assembly (managed C++ assemblies are automatically
platform specific):
64-bit ->
"c:\windows\Microsoft.NET\Framework64\v2.0.50727\RedistList\FrameworkList.xml":
--- snip ---
<File AssemblyName="System.Data" Version="2.0.0.0"
PublicKeyToken="b77a5c561934e089" Culture="neutral"
ProcessorArchitecture="AMD64" FileVersion="2.0.50727.42" InGAC="true" />
--- snip ---
32-bit ->
"c:\windows\Microsoft.NET\Framework\v2.0.50727\RedistList\FrameworkList.xml":
(the 64 bit .NET Framework 2.0 redist contains both: the 64 bit _and_ 32 bit
runtime)
--- snip ---
<File AssemblyName="System.Data" Version="2.0.0.0"
PublicKeyToken="b77a5c561934e089" Culture="neutral" ProcessorArchitecture="x86"
FileVersion="2.0.50727.42" InGAC="true" />
--- snip ---
I guess Wine should not fail on these bitness-neutral assemblies that contain
32-bit typelibs.
--- snip dlls/oleaut32/typelib.c ---
HRESULT WINAPI RegisterTypeLib(
ITypeLib * ptlib, /* [in] Pointer to the library*/
OLECHAR * szFullPath, /* [in] full Path of the library*/
OLECHAR * szHelpDir) /* [in] dir to the helpfile for the library,
may be NULL*/
{
...
if (ptlib == NULL || szFullPath == NULL)
return E_INVALIDARG;
if (FAILED(ITypeLib_GetLibAttr(ptlib, &attr)))
return E_FAIL;
TRACE("(%s,%d)", debugstr_w(szFullPath), attr->syskind);
#ifdef _WIN64
if (attr->syskind != SYS_WIN64) return TYPE_E_BADMODULEKIND;
#else
if (attr->syskind != SYS_WIN32 && attr->syskind != SYS_WIN16) return
TYPE_E_BADMODULEKIND;
#endif
...
}
--- snip dlls/oleaut32/typelib.c ---
Regards
--
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=24200
Summary: msi: properly handle msidbComponentAttributes64bit
attribute to support x64 installers that mix
architectures in a single MSI package (32-bit and
64-bit components, filesystem, registry)
Product: Wine
Version: 1.3.1
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
one of the main problems with current Wine msi is there are x64 installers that
mix architectures in a single MSI package: 64-bit and 32-bit components
(without a separate 32-bit installer for 32-bit components).
Basically 'msidbComponentAttributes64bit' is not handled.
Example: "mscoree.dll" -> .NET bootstrapper
"Component" table:
--- snip 32-bit ---
MSCOREE_DLL_____X86.3643236F_FC70_11D3_A536_0090278A1BB8
{173A6EB3-6403-11D4-A53F-0090278A1BB8}
DD_SystemFolder_X86.3643236F_FC70_11D3_A536_0090278A1BB8 8
FL_mscoree_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8
--- snip 32-bit ---
Attributes = 8
--- snip 64-bit ---
MSCOREE_DLL_____A64.3643236F_FC70_11D3_A536_0090278A1BB8
{70B495DC-D747-4182-B6D7-86C8A2244B25}
SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8 264
FL_mscoree_dll_____A64.3643236F_FC70_11D3_A536_0090278A1BB8
--- snip 64-bit ---
Attributes = 264 (256 = msidbComponentAttributes64bit + 8)
When it comes to "InstallFiles" action:
--- snip 32-bit component ---
001b:trace:msi:msi_get_property returning L"C:\\windows\\system32\\" for
property L"DD_SystemFolder_X86.3643236F_FC70_11D3_A536_0090278A1BB8"
...
001b:Call KERNEL32.MultiByteToWideChar(00000000,00000000,7fffe7ce1110
"FL_mscoree_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8",ffffffff,7fffe7d4ba00,7fff0000003c)
ret=7fffed8ff38c
...
001b:trace:msi:resolve_folder Working to resolve
L"DD_SystemFolder_X86.3643236F_FC70_11D3_A536_0090278A1BB8"
...
001b:trace:msi:cabinet_copy_file extracting
L"C:\\windows\\system32\\mscoree.dll"
001b:Call KERNEL32.CreateFileW(7fffe7d0b980
L"C:\\windows\\system32\\mscoree.dll",c0000000,00000000,00000000,7fff00000002,7fff00000080,00000000)
ret=7fffed8ff409
001b:Ret KERNEL32.CreateFileW() retval=000000ac ret=7fffed8ff409
--- snip 32-bit component ---
--- snip 64-bit component ---
001b:trace:msi:msi_get_property returning L"C:\\windows\\system32\\" for
property L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8"
...
001b:Call KERNEL32.MultiByteToWideChar(00000000,00000000,7fffe7d247a0
"FL_mscoree_dll_____A64.3643236F_FC70_11D3_A536_0090278A1BB8",ffffffff,7fffe7d15ab0,0000003c)
ret=7fffed8ff38c
...
001b:trace:msi:resolve_folder Working to resolve
L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8"
...
001b:trace:msi:cabinet_copy_file extracting
L"C:\\windows\\system32\\mscoree.dll"
001b:Call KERNEL32.CreateFileW(7fffe7d15b40
L"C:\\windows\\system32\\mscoree.dll",c0000000,00000000,00000000,7fff00000002,00000080,00000000)
ret=7fffed8ff409
001b:Ret KERNEL32.CreateFileW() retval=000000b0 ret=7fffed8ff40
--- snip 64-bit component ---
The first extracted 32-bit version that gets (incorrectly) extracted to
system32 folder (remember: we're 64-bit install here) and subsequently gets
overwritten with 64-bit version later.
For the registry the same applies: In order to create registry values in 64bit
HKLM for components marked with "msidbComponentAttributes64bit" there is
nothing to change in 64-bit installs.
For 32-bit components (attrs < 256) the registry stuff must go to Wow6432Node.
Ideally Wine's msi should also support something like
"msidbComponentAttributesDisableRegistryReflection" to allow 32-bit components
to write into 64bit HKLM but that's not required for now.
Regards
--
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=24189
Summary: msi: set "System64Folder" standard property in x64
environment (64bit installer of .NET Framework 2.0)
Product: Wine
Version: 1.3.1
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
continuation of bug 24187
Check for x64 IE5.01 fails.
--- snip ----
001a:trace:msi:msi_set_property 0x7ffff72baca0
L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8" L"C:\\windows\\system32\\"
...
001a:trace:msi:ACTION_AppSearchDr
L"SearchForIE501_ENU_A64.3643236F_FC70_11D3_A536_0090278A1BB8"
...
001a:trace:msi:msi_get_property property
L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8" not found
...
001a:trace:msi:MSI_EvaluateConditionW 1 <- L"( NOT
IE501FOUND.3643236F_FC70_11D3_A536_0090278A1BB8 ) AND ( NOT
IE501FOUND.3643236F_FC70_11D3_A536_0090278A1BB8 )"
...
001a:trace:msi:ACTION_PerformAction Performing action
(L"CA_CheckIE501.3643236F_FC70_11D3_A536_0090278A1BB8")
...
001a:trace:msi:ACTION_CustomAction Handling custom action
L"CA_CheckIE501.3643236F_FC70_11D3_A536_0090278A1BB8" (113 (null) L"IE5.01 or
higher version is required prior to installing Microsoft .NET Framework")
001a:trace:msidb:MSI_RecordSetStringW 0x7fffec3adb40 0 L"IE5.01 or higher
version is required prior to installing Microsoft .NET Framework"
...
001a:err:msi:ITERATE_Actions Execution halted, action
L"CA_CheckIE501.3643236F_FC70_11D3_A536_0090278A1BB8" returned 1603
--- snip ----
SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8 property is the culprit
--- snip orca ---
SearchForIE501_____X86.3643236F_FC70_11D3_A536_0090278A1BB8
[DD_SystemFolder_X86.3643236F_FC70_11D3_A536_0090278A1BB8] 1
SearchForIE501_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8
[DD_SystemFolder_X86.3643236F_FC70_11D3_A536_0090278A1BB8] 1
SearchForIE501_____A64.3643236F_FC70_11D3_A536_0090278A1BB8
[SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8] 1
SearchForIE501_ENU_A64.3643236F_FC70_11D3_A536_0090278A1BB8
[SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8] 1
--- snip orca ---
Although the property is initially set:
--- snip ---
001a:trace:msi:msi_get_property returning L"C:\\windows\\system32\\" for
property L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8"
--- snip ---
It is later reset due to custom action:
--- snip ---
001a:trace:msi:ACTION_CustomAction Handling custom action
L"CA_SetSystem64Folder.3643236F_FC70_11D3_A536_0090278A1BB8" (33
L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8" L"[System64Folder]")
001a:trace:msidb:MSI_CreateRecord 1
001a:trace:msidb:MSI_RecordSetStringW 0x7fffec3b3010 0 L"[System64Folder]"
001a:trace:msi:MSI_FormatRecordW 0x7fffe3c06490 0x7fffec3b3010 (nil)
0x7fffecf4ddfc
001a:trace:msidb:MSI_RecordIsNull 0x7fffec3b3010 0
001a:trace:msidb:MSI_RecordGetStringW 0x7fffec3b3010 0 (nil) 0x7fffecf4dcbc
001a:trace:msidb:MSI_RecordGetStringW 0x7fffec3b3010 0 0x7fffec3ad750
0x7fffecf4dcbc
001a:trace:msi:MSI_FormatRecordW (L"[System64Folder]")
001a:trace:msidb:MSI_CreateRecord 1
001a:trace:msidb:MSI_RecordSetStringW 0x7fffec3ad040 1 L"System64Folder"
001a:trace:msi:MSI_DatabaseOpenViewW L"SELECT `Value` FROM `_Property` WHERE
`_Property`=?" 0x7fffecf4dc38
001a:trace:msidb:TABLE_CreateView 0x7ffff72da890 L"_Property" 0x7fffecf4db68
001a:trace:msidb:TABLE_CreateView table 0x7fffe3c068e0 found with 2 columns
001a:trace:msidb:TABLE_CreateView L"_Property" one row is 4 bytes
001a:trace:msidb:WHERE_CreateView 0x7fffec3b3400
...
001a:trace:msi:msi_get_property property L"System64Folder" not found
001a:trace:msi:msiobj_release object 0x7fffec3b3010 destroyed
001a:trace:msi:msi_set_property 0x7ffff72da890
L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8" L""
001a:trace:msidb:MSI_CreateRecord 1
001a:trace:msidb:MSI_RecordSetStringW 0x7fffec3b3010 1
L"SystemFolder.3643236F_FC70_11D3_A536_0090278A1BB8"
--- snip ---
The standard property "System64Folder" must be set in x64 environments.
Adding this in dlls/msi/package.c:set_installer_properties() with proper value
will succeed the check and get the installer further
Regards
--
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=22805
Summary: Can't install 64bit .NET 2.0
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://www.microsoft.com/downloads/details.aspx?family
id=b44a0000-acf8-4fa1-affb-40e78d788b00&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Paul.Vriens.Wine(a)gmail.com
I'm trying to install the 64bit version of .NET 2.0 but this fails.
Console shows:
wine: Invalid address
A +module trace shows:
warn:module:map_image Need to relocate module from 0x400000 to 0x110000, but
there are no relocation records
warn:module:load_dll Failed to load module
L"C:\\users\\paul\\Temp\\IXP000.TMP\\install.exe"; status=c0000018
--
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=24187
Summary: msi: set "MsiAMD64" and "Msix64" standard properties
in x64 environment (64bit installer of .NET Framework
2.0)
Product: Wine
Version: 1.3.1
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
this is a split-off from http://bugs.winehq.org/show_bug.cgi?id=22805#c6
The 64bit version of .NET Framework 2.0 fails due to launch condition not met.
--- snip ---
...
001b:trace:msidb:TABLE_get_column_info 0x7fffec3aba00 1 (nil) 0x7fffecf4de50
001b:trace:msidb:MSI_RecordSetStringW 0x7fffe3c28c20 1 L"MsiAMD64"
001b:trace:msidb:TABLE_get_column_info 0x7fffec3aba00 2 (nil) 0x7fffecf4de50
001b:trace:msidb:MSI_RecordSetStringW 0x7fffe3c28c20 2 L"This setup is only
supported on AMD64 platforms"
...
001b:trace:msi:msi_get_property property L"MsiAMD64" not found
001b:trace:msi:MSI_EvaluateConditionW 0 <- L"MsiAMD64"
001b:trace:msi:msiobj_release object 0x7fffe3c28c20 destroyed
001b:trace:msi:MSI_ViewClose 0x7fffec3ab130
001b:trace:msidb:TABLE_close 0x7fffec3aba00
001b:trace:msidb:TABLE_delete 0x7fffec3aba00
001b:trace:msi:msiobj_release object 0x7fffec3ab130 destroyed
001b:trace:msidb:MSI_CreateRecord 1
001b:trace:msidb:MSI_RecordSetStringW 0x7fffec3ab130 1 L"Action ended 17:16:07:
LaunchConditions. Return value 1603."
--- snip ---
You have to add standard properties that indicate 64-bit environment.
Current, only the "Intel" (32 bit) standard property is handled.
--- snip dlls/msi/package.c ---
static VOID set_installer_properties(MSIPACKAGE *package)
{
...
static const WCHAR szIntFormat[] = {'%','d',0};
static const WCHAR szIntel[] = { 'I','n','t','e','l',0 };
...
GetSystemInfo( &sys_info );
if (sys_info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
{
sprintfW( bufstr, szIntFormat, sys_info.wProcessorLevel );
msi_set_property( package->db, szIntel, bufstr );
}
...
--- snip dlls/msi/package.c ---
Just add handling for "MsiAMD64" (introduced with Windows Installer 3.0, still
present for backward compatibility) and "Msix64" (introduced with with Windows
Installer 3.1).
The values seem not relevant, it's only important that the properties exist.
You can reuse the sys_info values from previous GetSystemInfo() call for
"Intel" property to also test for AMD/64 bit case.
In case of x64 system set both, "MsiAMD64" and "Msix64" properties.
With that in place, this launch condition succeeds only to run into next bug
;-)
Regards
--
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=7294
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |focht(a)gmx.net
Version|unspecified |0.9.30.
OS|other |Linux
URL|http://www.adventurecompany |https://web.archive.org/web
|games.com/tac/aura/index.ht |/20210709130708/https://dl.
|ml |4players.de/f1/pc/aura/Aura
| |_Demo.zip
Hardware|Other |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=47255
Bug ID: 47255
Summary: Xenonauts crashes in wined3d
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: hverbeet(a)gmail.com
Regression SHA1: db201072655946662c041a66ee434c30c245e5b0
Distribution: ---
Created attachment 64541
--> https://bugs.winehq.org/attachment.cgi?id=64541
terminal output
Xenonauts v1.65 crashes immediately after launch.
Reverting commit db201072655946662c041a66ee434c30c245e5b0 fixes the crash.
No demo version is available. Let me know what debug log would be of help.
wine-4.8-343-g27bf52d12c
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GT 730/PCIe/SSE2
OpenGL core profile version string: 4.6.0 NVIDIA 418.52.07
--
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=24613
Summary: Aura 2 (Sacred Rings): inventory not shown when
pressing RMB
Product: Wine
Version: 1.3.4
Platform: x86
URL: http://www.fileplanet.com/175732/170000/fileinfo/Aura-
2:-The-Sacred-Rings-Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: chris.kcat(a)gmail.com
Created an attachment (id=31088)
--> (http://bugs.winehq.org/attachment.cgi?id=31088)
terminal output
In Aura 2 (The Sacred Rings) when you press the right-mouse button the
inventory should show up at the bottom of the screen, showing your items, the
journal etc. Normally, when you open your inventory the mouse pointer should be
confined to this lower area of the screen where you can select items etc.
When you press RMB in Wine nothing happens in the game: the mouse pointer stays
on the main screen, a black bar is shown below but it contains nothing.
The game worked without the issue in Wine-0.9.45. Bisecting between 0.9.45 and
0.9.46 resulted:
d9571c9e6fa0b8f255815c5128c2859348ea70e6 is the first bad commit
commit d9571c9e6fa0b8f255815c5128c2859348ea70e6
Author: Chris Robinson <chris.kcat(a)gmail.com>
Date: Sat Sep 15 13:02:32 2007 -0700
wgl: Store the fbconfig id with the window when a pixel format is set.
:040000 040000 41741ff092257972095d557196b306aa7e5f7a43
3692bf0336451ec52733c88a7c30ced04fb60179 M dlls
The patch cannot be reverted cleanly, however, after
git checkout d9571c9e6fa0b8f255815c5128c2859348ea70e6 : the problem exists
and
git revert d9571c9e6fa0b8f255815c5128c2859348ea70e6 : restores the good state.
Link to the demo added to URL (538 MB)
Author of the patch added to CC.
Fedora 13
Nvidia 7600 / driver 256.53
--
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=51434
Bug ID: 51434
Summary: Resident Evil 7 has rendering noise with Reflections
enabled (OpenGL renderer)
Product: Wine
Version: 6.12
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 70287
--> https://bugs.winehq.org/attachment.cgi?id=70287
example
wine-6.12-162-gd10887b8f56
--
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=47299
Bug ID: 47299
Summary: LAV Filters codec crashes when set to DXVA2
(copy-back) HW acceleration.
Product: Wine
Version: 4.9
Hardware: x86
URL: https://github.com/Nevcairiel/LAVFilters/releases/down
load/0.74.1/LAVFilters-0.74.1-x86.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gabrielopcode(a)gmail.com
Distribution: ---
Created attachment 64600
--> https://bugs.winehq.org/attachment.cgi?id=64600
Avoid a NULL dereference by returning early
Grab the 32-bit version in a 32-bit wineprefix to keep it simple (link supplied
for latest version but it's not required).
Extract it to C:\lav on a new 32-bit prefix. Then install with:
wine cmd /c 'cd /D C:\lav && install_video.bat'
Open the config with:
wine rundll32.exe 'C:\lav\LAVVideo.ax,OpenConfiguration'
On the 'Hardware Acceleration' section, change the 'Hardware Decoder to use' to
'DXVA2 (copy-back)' and the crash should happen.
Here's the relevant snippet with +d3d (notice the errors, since I assume we
don't have DXVA2 support):
--- snip ---
0029:trace:d3d:wined3d_cs_run Executing WINED3D_CS_OP_CALLBACK.
0029:trace:d3d:wined3d_cpu_blitter_create Created blitter 0x1708f0.
0029:trace:d3d:wined3d_ffp_blitter_create Created blitter 0x170908.
0029:trace:d3d:wined3d_fbo_blitter_create Created blitter 0x170948.
0029:trace:d3d:wined3d_raw_blitter_create Created blitter 0x170960.
0029:trace:d3d:context_acquire device 0x1a6898, texture 0x19da60,
sub_resource_idx 0.
0029:trace:d3d:context_acquire Rendering onscreen.
0029:trace:d3d:swapchain_create_context Creating a new context for swapchain
0x1c1478, thread 41.
0029:trace:d3d:context_create swapchain 0x1c1478.
0029:trace:d3d:adapter_gl_create_context swapchain 0x1c1478, context 0x1c6fd9c.
0029:trace:d3d:wined3d_context_gl_init context_gl 0x1c3978, swapchain 0x1c1478.
0029:trace:d3d:context_choose_pixel_format device 0x1a6898, dc 0x120052,
color_format WINED3DFMT_B8G8R8A8_UNORM, ds_format WINED3DFMT_UNKNOWN,
aux_buffers 0.
0029:trace:d3d:context_choose_pixel_format Found iPixelFormat=27 for
ColorFormat=WINED3DFMT_B8G8R8A8_UNORM, DepthStencilFormat=WINED3DFMT_UNKNOWN.
0029:trace:d3d:wined3d_context_gl_enter Entering context 0x1c3978, level 1.
0029:err:d3d:wined3d_context_gl_init Failed to set pixel format 27 on device
context 0x120052.
0029:trace:d3d:context_release Releasing context 0x1c3978, level 1.
0029:warn:d3d:context_release Context 0x1c3978 is not the current context.
0029:warn:d3d:adapter_gl_create_context Failed to initialise context.
0029:err:d3d:swapchain_create_context Failed to create a new context for the
swapchain
--- snip ---
The attached patch fixes this problem by avoiding the crash. Obviously it
doesn't fix the root cause, so I don't know if it's a good practice to apply it
but it's an idea.
Note that this crash happens even in media players that use DirectShow (e.g.
Media Player Classic) when opening files with codecs that support DXVA2
decoding, if you set the registry key manually.
If you want to test that, import:
REGEDIT4
[HKEY_CURRENT_USER\Software\LAV\Video\HWAccel]
"HWAccel"=dword:00000003
in the wineprefix, to set it to DXVA2 (copy-back), and then load such a video,
it should crash.
The patch here will also fix loading such videos and in fact they will work
just fine, though obviously without any hardware acceleration since we don't
have it. I don't think crashing on missing features is desireable, though.
I'm not familiar with wined3d code at all so there's probably a better fix for
this.
--
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=35868
Bug ID: 35868
Summary: DXVA Checker 3.0.x (.NET 2.0 app) needs unimplemented
function dxva2.dll.DXVA2CreateVideoService
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
since there is now a stub dll I looked around for some real world users :)
'DXVA Checker'
Prerequisite: 'winetricks -q dotnet20'
--- snip ---
$ wine ./DXVAChecker.exe
...
fixme:quartz:VMR9_maybe_init Reduce ratio to least common denominator
fixme:quartz:VMR9SurfaceAllocatorNotify_SetD3DDevice (0x1c90d0/0x1c8ec0)->(...)
semi-stub
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:quartz:VMR9SurfaceAllocatorNotify_AllocateSurfaceHelper
(0x1c90d0/0x1c8ec0)->(0x33dcec, 0x33dce8 => 2, 0x1dbae0) semi-stub
fixme:quartz:VMR7FilterConfig_SetNumberOfStreams (0x1c90bc/0x1c8ec0)->(1) stub
fixme:quartz:VMR9Inner_QueryInterface No interface for
{bb057577-0db8-4e6a-87a7-1a8c9a505a0f}
fixme:strmbase:BaseInputPinImpl_QueryInterface No interface for
{256a6a22-fbad-11d1-82bf-00a0c9696c8f}!
wine: Call from 0x7b83abc3 to unimplemented function
dxva2.dll.DXVA2CreateVideoService, aborting
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms704721%28v=vs.85%…
$ sha1sum DXVAChecker32_3.0.1.zip
e7ba2151ae8cc2b9f805cbd1dd046c31f0d45a5b DXVAChecker32_3.0.1.zip
$ du -sh DXVAChecker32_3.0.1.zip
564K DXVAChecker32_3.0.1.zip
$ wine --version
wine-1.7.15-67-g99c151a
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.
http://bugs.winehq.org/show_bug.cgi?id=34620
Bug #: 34620
Summary: Credits option in the menu doesn't work well in Evil
Islands
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
Created attachment 46135
--> http://bugs.winehq.org/attachment.cgi?id=46135
Evil Islands Log
Text doesn't show up when you click "CREDITS" in the menu of Evil Islands.
Can be reproduced with the demo (check out the link)
Tested with:
Windows Vista (without Wine), GeForce 9600M GS--the program works fine here
Ubuntu 13.04, GeForce 9600M GS (NVIDIA driver 313)
Mac OS X 10.7.5, ATI HD 2600 Pro, Mac Driver/X11
--
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=6254
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |koutouzov(a)sokrat.ru
--- Comment #92 from Anastasius Focht <focht(a)gmx.net> ---
*** Bug 51043 has been marked as a duplicate of this bug. ***
--
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=51364
Bug ID: 51364
Summary: Battle.net doesn't start on wine staging, built from
git
Product: Wine-staging
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cysp74(a)posteo.net
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 70218
--> https://bugs.winehq.org/attachment.cgi?id=70218
logentries
Battle.net doesn't start wine staging, built from git.
Last working commit is:
https://github.com/wine-staging/wine-staging/commit/fd5866f6f12e82afc74a21e…
Attaching some log entries.
Related env variables:
export __GL_THREADED_OPTIMIZATIONS=0
export __GL_SHADER_CACHE="${SCRIPTHOME}/shadercache"
export __GL_SHADER_DISK_CACHE_PATH="${SCRIPTHOME}/shadercache"
export DXVK_STATE_CACHE_PATH="${SCRIPTHOME}/dxvkcache"
export MESA_GLTHREAD=FALSE
export STAGING_SHARED_MEMORY=1
export STAGING_WRITECOPY=1
export GPU_MAX_HEAP_SIZE=100
export GPU_MAX_ALLOC_PERCENT=100
Played with __GL_THREADED_OPTIMIZATIONS, STAGING_SHARED_MEMORY,
STAGING_WRITECOPY. No effect settings these true/false/on/off.
DXVK 1.9 installed.
Ty
--
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=37879
Bug ID: 37879
Summary: LD Didactic CASSY Lab 2: [ERROR] FATAL UNHANDLED
EXCEPTION
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: olibuntu(a)arcor.de
Distribution: ---
Created attachment 50448
--> https://bugs.winehq.org/attachment.cgi?id=50448
output of env WINEDEBUG=warn+all wine C:\\Program\ Files\\LD\
DIDACTIC\\CASSYLab2\\CASSYLab2.exe > output.txt 2>&1
Download MSI packet of latest version of CASSY Lab 2 in your language from:
http://www.ld-didactic.de/service/softwaredownload/cassy-s.html
Direct link for German:
http://www.ld-didactic.com/software/cassylab2_de.msi
Install in a clean WINEPREFIX (change "de" according to your language):
wine msiexec /i cassylab2_de.msi
Run via:
wine C:\\Program\ Files\\LD\ DIDACTIC\\CASSYLab2\\CASSYLab2.exe
I attached the output of
env WINEDEBUG=warn+all wine C:\\Program\ Files\\LD\
DIDACTIC\\CASSYLab2\\CASSYLab2.exe > output.txt 2>&1
Any ideas what to try next? This was on a clean WINEPREFIX. What might I
install? Any DLL missing?
--
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=51424
Bug ID: 51424
Summary: Battle.Net update cannot be installed
Product: Wine
Version: 6.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aff(a)affsdiary.com
Distribution: ---
After the most recent update to the Battle.Net client, it hangs on 'updating
battle.net update agent' during install on a fresh 6.12 Staging Prefix (a clean
prefix with development was also tried, and also doesn't work).
The error spammed over and over in the console is this;
0104:fixme:uiautomation:UiaClientsAreListening (): stub
At first I thought it was an issue with the new Wine version, however I tried
to test on a second system which was still running the previous version and
still got the issue.
The system(s) this is happening on are both X399 platform (TR1/TR2). Debian 11
is used on both.
--
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=51384
Bug ID: 51384
Summary: Rainbow Six Siege Vulkan crashes with Nvidia when
trying to use AMD Vulkan functions
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winevulkan
Assignee: wine-bugs(a)winehq.org
Reporter: stefan.riesenberger(a)gmail.com
Distribution: ---
Created attachment 70241
--> https://bugs.winehq.org/attachment.cgi?id=70241
R6S with +fixme+err+vulkan
So latest wine master fixed the initial crash of Rainbow Six Siege and it works
fine (the singleplayer and Lanplay) with the d3d11 renderer. But the Vulkan
renderer crashes on the following (full log when the game starts attached):
0540:trace:vulkan:wine_vkCmdWriteBufferMarkerAMD 0x7f6131242a30, 0x2000,
0x7f61318696f8, 0x4, 65537
wine: Unhandled page fault on execute access to 0000000000000000 at address
0000000000000000 (thread 0540), starting debugger...
I am using a Nvidia GPU, so this function doesn't exist on the Linux side. This
can be confirmed by checking vulkaninfo.
I already talked to Georg Lehmann and he confirmed that this is an issue in
winevulkan, that he already assumed to be a problem someday.
He also said that he is working on a fix, so this is more of an informational
bug.
Kind regards,
Riesi
--
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=51351
Bug ID: 51351
Summary: PokerstarsBr repeatedly crashes
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: on3.40.se7en(a)gmail.com
Distribution: ---
Created attachment 70208
--> https://bugs.winehq.org/attachment.cgi?id=70208
Backtrace
Repeatedly crashes every few minutes.
Backtrace 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=51309
Bug ID: 51309
Summary: OSU! crashed after displaying splashscreen
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zeroredgrave(a)gmail.com
Distribution: ---
Created attachment 70176
--> https://bugs.winehq.org/attachment.cgi?id=70176
OSU Crashed after splashscreen
Osu suddenly crashed after splashscreen.
Error:
System.Runtime.InteropServices.MarshalDirectiveException: Byref array
marshalling to managed code is not implemented.
at (wrapper native-to-managed) System._AppDomain.GetAssemblies(intptr,intptr)
--
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=30941
Bug #: 30941
Summary: Could not start osu! using wine-mono
Product: Wine
Version: 1.5.6
Platform: x86-64
URL: http://osu.ppy.sh/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felixonmars(a)gmail.com
CC: fracting(a)gmail.com
Classification: Unclassified
0. Software Download:
http://osu.ppy.sh/p/download
1. How to reproduce:
$ cd path/to/installation/directory
$ wine osu\!.exe
2. Result:
Unhandled Exception: System.InvalidProgramException: Invalid IL code in
#UH.#fs:
#eo (): IL_0010: ldelem.ref
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidProgramException: Invalid IL
co
de in #UH.#fs:#eo (): IL_0010: ldelem.ref
Same result using WINEARCH=win32
--
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=51405
Bug ID: 51405
Summary: winecfg crashes when using "Emulate a virtual desktop"
on Debian Bullseye
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: googlemail(a)email-postfach.info
Distribution: ---
Created attachment 70262
--> https://bugs.winehq.org/attachment.cgi?id=70262
Error log for 6.0.0, 6.0.1 and 6.12
Whenever winecfg is used on a WINEPREFIX with "Emulate a virtual desktop"
checked, it crashes.
This applies to WineHQ Binary Packages for Debian Bullseye (amd64). I've tested
this with 6.0.0, 6.0.1 and 6.12. 5.0.4 is fine.
This seems to be specific to Debian Bullseye, since wine-stable on Debian
Buster works fine on the same machine.
--
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=40912
Bug ID: 40912
Summary: Unhandled exception in cfgwiz when installing Office
2000
Product: Wine
Version: unspecified
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: bourne.identity(a)hotmail.com
Created attachment 55010
--> https://bugs.winehq.org/attachment.cgi?id=55010
backtrace of unhandled exception in cfgwiz when installing Office 2000
When installing Office 2000, I get an unhandled exception related to cfgwiz.
Although it appears that the installation completed successfully. But
surprisingly, Windows fonts that normally get installed with Office 2000 are
missing - I don't even have Courier New. I only have Gnome fonts
--
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=42375
Bug ID: 42375
Summary: AvERP, Fastreport4, Printing of RTF-text locks up
application in print preview
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yves.schlegel(a)itsysstl.de
Distribution: ---
Printing a document containing RTF-text in AvERP using Fastreport 4 th
application locks up in the print preview. If there is no RTF text included
everything works fine. Therefore it seems to be an issue in using Fastreport 4
running with WINE in combination with RTF-texts. I faced the problems since
WINE 1.6 until the latest versions (2.0.0, wine-staging).
--
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=6254
spam(a)abma.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spam(a)abma.de
--- Comment #91 from spam(a)abma.de ---
I've hit this bug in some commercial app, too which uses "FastReport VCL" (
https://www.fast-report.com/public_download/frvcl/frvcl_demo.exe -> install ->
addin objects -> Richtext -> Design to trigger it)
--
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=51238
Bug ID: 51238
Summary: regression: World of Warships fails with
wined3d_deferred_context_* functions available.
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: janbraun(a)gmx.net
Regression SHA1: 60027fcc23e665fdd073e5fbe33bdd4850cd9e84
Distribution: ---
Created attachment 70109
--> https://bugs.winehq.org/attachment.cgi?id=70109
hack removing deferred context support
Since wine6.10, World of Warships crashes with a dialog box
"""
A critical error has occurred
The error information was collected to the Reports folder
Use the link below for support
[Restart] [Terminate]
"""
upon game start (on the black screen, before displaying the WoWS logo). The
Report data suggests "crash_type": "unhandled_exception" "code_of_exception":
3221225477.
Bisecting points to 60027fcc23e665fdd073e5fbe33bdd4850cd9e84, which doesn't
revert cleanly. But simply removing the wined3d_deferred_context_* functions
(see attached patch/hack) allows WoWS to work normally again.
Diffing the WINEDEBUG=trace+d3dx logs shows they diverge after the line
"fixme:d3d11:d3d11_device_CheckFeatureSupport Returning fake threading support
data."
The stock version prints a few variations of
"fixme:d3d:wined3d_deferred_context_update_sub_resource context 0x262ef030,
resource 0x23ccc360, sub_resource_idx 0, box (0, 0, 0)-(20, 20, 1), data
0x1bd92000, row_pitch 80, slice_pitch 1600, stub!"
, and then goes on to spam the _Locinfo__Locinfo_ctor_cat_cstr FIXME (possibly
while building the dialog box). The hacked version instead spams complaints
about
"err:d3d:state_undefined Undefined state UNKNOWN_STATE(0) (0)."
, but continues working until I kill the window when the logo is rendered.
Everything above was tested on git revision
aadcff491fc9d823a90cee567c8e1d55cd9a589b in a prefix with winetricks corefonts
vcrun2013 win10.
--
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=49764
Bug ID: 49764
Summary: Every program using virtual desktop crashes on startup
after a recent Mesa snapshot added a second Vulkan
device
Product: Wine
Version: 5.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: subgraph93(a)gmail.com
Distribution: ---
Distribution: Ubuntu 20.04.1
Filing this report here because I think a Wine issue may be present. A specific
Wine setting always triggers the issue, and other configurations (Wine without
it or native programs) did not trigger the issue. I apologize for taking your
time if it's a purely Mesa issue.
An update to a newer Mesa snapshot (Git acf756a -> Git a27823e) has introduced
a new Vulkan device for vallium/llvmpipe (software renderer). As a result, I
have two "GPUs", and after the Mesa update, I found that programs running in
virtual desktop now crash at startup. I believe the update and the issue to be
related.
I tested it on winecfg in a clean wineprefix. (I backed up the usual ~/.wine,
ran `wine winecfg` to create the prefix, turned virtual desktop mode on by
default, closed winecfg, then ran `wine winecfg` again.) These two lines seem
to be always output:
0024:err:module:LdrInitializeThunk "comctl32.dll" failed to initialize,
aborting
0024:err:module:LdrInitializeThunk Initializing dlls for
L"C:\\windows\\system32\\winecfg.exe" failed, status c0000005
This issue affects both 5.15 and 5.16, both devel and staging for me.
I know that more information is likely needed (probably logs with debug
channels, or vulkaninfo?), not sure what I need to provide though. I have
+relay,+seh logs of the tests with winecfg (as said above) for 5.15-devel and
5.16-devel.
#49631 may be related?
--
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=31844
Bug #: 31844
Summary: CitiesXL (all versions) needs native D3DXCreateSphere
(purist)
Product: Wine
Version: 1.5.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
The free CitiesXL demo
http://www.fileplanet.com/204724/200000/fileinfo/Cities-XL-Demo
53833dbbe9cf49eb7e05c85b4be9acf217e91a28 CitiesXLDemo.zip
crashes on startup with 'winetricks alldlls=builtin'; the log says
fixme:d3dx:D3DXCreateSphere Case of adjacency != NULL not implemented.
wine: Unhandled page fault on read access to 0x00000000 at address 0x4544d2
(thread 003c), starting debugger...
Backtrace:
=>0 0x004544d2 in graph3d
1 0x0047fdd4 in graph3d
2 0x00bd4ff6 in gameengine_win32shipping
This also affects the gamefly download version of CitiesXL 2011 and
reportedly also CitiesXL 2012.
'winetricks d3dx9_36=native' works around the problem, and lets you
get past the intro movie. (The demo then puts up a dialog saying the
beta is over.)
--
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=38947
Bug ID: 38947
Summary: Cities XL Platinum crashes while loading to the menu,
needs vcomp.dll._vcomp_for_dynamic_init
Product: Wine
Version: 1.7.47
Hardware: x86
URL: http://www.chip.de/downloads/Demo-Cities-XL_37882385.h
tml
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: vcomp
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: sebastian(a)fds-team.de
Distribution: ---
Created attachment 51893
--> https://bugs.winehq.org/attachment.cgi?id=51893
terminal output
Prerequisite: native d3dx9_36
The game begins to load but crashes somewhere during the initial loading stage:
>...
>wine: Unimplemented function vcomp.dll._vcomp_for_dynamic_init called at address 0x7b839a6c (thread 007e), starting debugger...
>...
Mscodescan output (Steam version):
./CitiesXL_Platinum.exe imports following stub symbols:
vcomp:_vcomp_atomic_add_i4
vcomp:_vcomp_enter_critsect
vcomp:_vcomp_for_dynamic_init
vcomp:_vcomp_for_dynamic_next
vcomp:_vcomp_for_static_end
vcomp:_vcomp_for_static_init
vcomp:_vcomp_leave_critsect
Mscodescan (non-Steam demo version):
./Benchmark.dll imports following stub symbols:
vcomp:_vcomp_atomic_add_i4
vcomp:_vcomp_for_dynamic_init
vcomp:_vcomp_for_dynamic_next
To reproduce with the demo version:
1. install the demo
2. uninstall MSVC++ 2005 which comes installed with the demo
3. start the game with CitiesXL_Game.exe
wine-1.7.47-118-ga90592c
--
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=26931
Summary: Nvidia hdr sample wants
d3dx9_36.dll.D3DXLoadMeshFromXW
Product: Wine
Version: 1.3.18
Platform: x86-64
URL: http://developer.download.nvidia.com/SDK/9.5/Samples/D
EMOS/Direct3D9/HDR_FP16x2.zip
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
Blocks: 24419
austin@aw21 ~/a/DEMOS/Direct3D9/bin/release $ wine HDR_FP16x2.exe
fixme:win:EnumDisplayDevicesW ((null),0,0x33f2f4,0x00000000), stub!
fixme:d3d:swapchain_init Add OpenGL context recreation support to
context_validate_onscreen_formats
fixme:d3dx:D3DXCreateFontIndirectW (0x12e9d8, 0x33f9ec, 0x43bb40): stub
fixme:d3dx:D3DXCreateFontIndirectW (0x12e9d8, 0x33f9ec, 0x43d200): stub
fixme:d3dx:D3DXCreateFontIndirectW (0x12e9d8, 0x33f9ec, 0x43d420): stub
fixme:d3dx:D3DXGetImageInfoFromFileInMemory (0x6d0000, 1048620, 0x33f760):
partially implemented
wine: Call from 0x7b83a362 to unimplemented function
d3dx9_36.dll.D3DXLoadMeshFromXW, aborting
wine: Unimplemented function d3dx9_36.dll.D3DXLoadMeshFromXW called at address
0x7b83a362 (thread 002b), starting debugger...
--
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=24419
Summary: Nvidia hdr sample crashes without native d3dx9_36
Product: Wine
Version: 1.3.2
Platform: x86-64
URL: http://developer.download.nvidia.com/SDK/9.5/Samples/D
EMOS/Direct3D9/HDR_FP16x2.zip
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
Created an attachment (id=30784)
--> (http://bugs.winehq.org/attachment.cgi?id=30784)
+d3dx trace
Terminal shows:
fixme:d3dx:D3DXCreateFontIndirectW (0x136a08, 0x32fa0c, 0x43b300): stub
fixme:d3dx:D3DXCreateFontIndirectW (0x136a08, 0x32fa0c, 0x43c9c0): stub
fixme:d3dx:D3DXCreateFontIndirectW (0x136a08, 0x32fa0c, 0x43cbe0): stub
fixme:d3dx:D3DXGetImageInfoFromFileInMemory (0x8d0000, 1048620, 0x32f770):
partially implemented
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
I suspect it's related to that last line or two...
it pops up a dialog, saying:
The D3D device has a non-zero reference count, meaning some objects were not
released.
winetricks d3dx9_36 lets it run.
--
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=21812
Summary: 3dgamestudio.com demos crash on exit
Product: Wine
Version: 1.1.39
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The Venice demo at 3dgamestudio.com looks beautiful,
but crashes on exit.
http://server.conitec.net/down/venice.zip
443f94ab15d5bc02921c1e917785f822dcf0f864 venice.zip
Happily, there seems to be a reasonable backtrace:
Unhandled exception: page fault on read access to 0x00000f2c in 32-bit code
(0x7e51e14c).
Backtrace:
=>0 FindContext+0x16d(This=0x19bbc8, target=0x193030)
[dlls/wined3d/context.c:1923] in wined3d
1 context_acquire+0x8a(device=0x19bbc8, target=(nil),
usage=CTXUSAGE_RESOURCELOAD) [dlls/wined3d/context.c:2266] in wined3d
2 IWineD3DDeviceImpl_Uninit3D+0xa7(iface=0x19bbc8,
D3DCB_DestroySwapChain=0x7e653c5d) [dlls/wined3d/device.c:1705] in wined3d
3 IDirect3DDevice9Impl_Release+0x126(iface=0x192680) [dlls/d3d9/device.c:273]
in d3d9
4 in acknex (+0x6435a)
5 in reflectionparticle (+0x101e)
0x7e51e14c FindContext+0x16d [dlls/wined3d/context.c:1923] in wined3d: movzbl
0xf2c(%eax),%eax
1923 old_render_offscreen = context->render_offscreen;
--
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=38352
Bug ID: 38352
Summary: Foresight crashes before the main menu, needs
d3dx9_36.dll.D3DXComputeNormalMap
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 51196
--> https://bugs.winehq.org/attachment.cgi?id=51196
terminal output
Foresight is an indie strategy game, currently available only on Steam (no demo
has been released).
The splash screens are displayed but the game crashes when the main menu should
appear if I start the game with built-in d3dx9_36.
>wine: Call from 0x7b839524 to unimplemented function d3dx9_36.dll.D3DXComputeNormalMap, aborting
--
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=26379
Summary: Gamestudio Venice crashes with unimplemented function
d3dx9_36.dll.D3DXComputeNormals
Product: Wine
Version: 1.3.15
Platform: x86
URL: http://server.conitec.net/down/venice.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Created an attachment (id=33594)
--> (http://bugs.winehq.org/attachment.cgi?id=33594)
~/wine-git/wine reflectionParticle.exe &> log.txt
unimplemented function d3dx9_36.dll.D3DXComputeNormals
Venice comes with d3dx9_30.dll and therefore only a purist would notice.
--
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=51362
Bug ID: 51362
Summary: user32:sysparams times out on the cw-* Windows 10 1507
machines
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
user32:sysparams times out on the cw-* Windows 10 1507 machines:
https://test.winehq.org/data/patterns.html#user32:sysparams
sysparams.c:1123: testing SPI_{GET,SET}ICONTITLEWRAP
user32:sysparams:04d8 done (258) in 120s
It used to time out on most cw-rx460 configurations because the 19.* Radeon
driver created a window that did not process the messages broadcasted by the
first SystemParametersInfo(... SPIF_SENDCHANGE) call.
However this was resolved by:
* Upgrading to the 21.* Radeon driver which does not have this issue.
* Reinstalling the 19.11.3 driver without its configuration GUI.
Despite that it still systematically times out on cw-rx460-1507 so there must
be some other window causing trouble.
user32:sysparams also times out on cw-gtx560-1507 but not systematically. The
reason for this timeout is unknown but it is likely caused by some rogue window
too.
user32:sysparams never times out on the QEmu VMs, including w1064v1507 so it
seems likely that the issue is related to some aspect specific to the cw-*
machines.
--
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=42014
Bug ID: 42014
Summary: wine refuses BOSE Soundtouch
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Rainwine(a)orbitcomputer.de
Distribution: Mint
Created attachment 56459
--> https://bugs.winehq.org/attachment.cgi?id=56459
wine backtrace file
BOSE
--
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=42015
Bug ID: 42015
Summary: wine refuses to run BOSE Soundtouch
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Rainwine(a)orbitcomputer.de
Distribution: Mint
BOSE Soundtouch does not run, because wine has problems with Qt?
--
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=44980
Bug ID: 44980
Summary: SoundTouch 10
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: biswasnambiar(a)gmail.com
Distribution: ---
Created attachment 61111
--> https://bugs.winehq.org/attachment.cgi?id=61111
The Program Error Details script
I was trying to install Soundtouch app for using my SoundTouch 10 on my lubuntu
OS version 17.10.
--
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=42586
Bug ID: 42586
Summary: Adobe Reader DC crashes on startup
Product: Wine
Version: 2.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fjfrackiewicz(a)gmail.com
Distribution: ---
Created attachment 57510
--> https://bugs.winehq.org/attachment.cgi?id=57510
Terminal output Wine 2.3
When attempting to run Adobe Reader DC, the application crashes on start when I
attempt to run the application in a 32-bit Windows 7 prefix.
Overrides needed:
mspatcha
--
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=36169
Bug ID: 36169
Summary: valgrind shows a possible leak in
programs/services/tests/services.c
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==3856== 32 bytes in 1 blocks are possibly lost in loss record 32 of 104
==3856== at 0x7BC4C6B7: notify_alloc (heap.c:255)
==3856== by 0x7BC50EFB: RtlAllocateHeap (heap.c:1716)
==3856== by 0x7BC39A6B: RtlInitializeCriticalSectionEx (critsection.c:326)
==3856== by 0x7B876AE5: InitializeCriticalSectionEx (sync.c:356)
==3856== by 0x7B876A64: InitializeCriticalSection (sync.c:313)
==3856== by 0x4A34B0E: test_runner (service.c:445)
==3856== by 0x4A34DAD: func_service (service.c:484)
==3856== by 0x4A35C5D: run_test (test.h:584)
==3856== by 0x4A3604B: main (test.h:654)
==3856==
--
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=36570
Bug ID: 36570
Summary: valgrind shows a couple possible leaks in
rpcrt4/tests/rpc_protseq.c
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: rpc
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==10120== 64 bytes in 1 blocks are possibly lost in loss record 122 of 242
==10120== at 0x7BC4C6DF: notify_alloc (heap.c:255)
==10120== by 0x7BC50F23: RtlAllocateHeap (heap.c:1716)
==10120== by 0x55FF1FF: rpcrt4_protseq_np_alloc (rpc_transport.c:642)
==10120== by 0x55FB2EA: alloc_serverprotoseq (rpc_server.c:927)
==10120== by 0x55FB594: RPCRT4_get_or_create_serverprotseq
(rpc_server.c:977)
==10120== by 0x55FB89F: RpcServerUseProtseqA (rpc_server.c:1041)
==10120== by 0x4CB910E: test_RpcServerUseProtseq (rpc_protseq.c:64)
==10120== by 0x4CB9ABB: func_rpc_protseq (rpc_protseq.c:202)
==10120== by 0x4CE2071: run_test (test.h:584)
==10120== by 0x4CE2460: main (test.h:654)
==10120==
==10120== 68 bytes in 1 blocks are possibly lost in loss record 126 of 242
==10120== at 0x7BC4C6DF: notify_alloc (heap.c:255)
==10120== by 0x7BC50F23: RtlAllocateHeap (heap.c:1716)
==10120== by 0x560163E: rpcrt4_protseq_sock_alloc (rpc_transport.c:1554)
==10120== by 0x55FB2EA: alloc_serverprotoseq (rpc_server.c:927)
==10120== by 0x55FB594: RPCRT4_get_or_create_serverprotseq
(rpc_server.c:977)
==10120== by 0x55FB89F: RpcServerUseProtseqA (rpc_server.c:1041)
==10120== by 0x4CB91A4: test_RpcServerUseProtseq (rpc_protseq.c:71)
==10120== by 0x4CB9ABB: func_rpc_protseq (rpc_protseq.c:202)
==10120== by 0x4CE2071: run_test (test.h:584)
==10120== by 0x4CE2460: main (test.h:654)
==10120==
--
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=51399
Bug ID: 51399
Summary: Together ntoskrnl.exe:ntoskrnl and user32:monitor
trigger extra user32:win failures
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
When ntoskrnl.exe:ntoskrnl is run before user32:win it triggers 4 failures in
the latter (see bug 51391).
And when user32:monitor is run before user32:win it triggers 3 failures (see
bug 51392).
But when both ntoskrnl.exe:ntoskrnl and user32:monitor are run before
user32:win they trigger an extra set of 15 failures:
win.c:5162: Test failed: wrong update region
win.c:5177: Test failed: wrong update region
win.c:5195: Test failed: wrong update region
win.c:5197: Test failed: unexpected update rect: (20,40)-(29,50)
win.c:5211: Test failed: wrong update region
win.c:5221: Test failed: wrong update region in excessive scroll
win.c:5243: Test failed: wrong update region
win.c:5252: Test failed: wrong update region
win.c:5261: Test failed: wrong update region
win.c:5276: Test failed: wrong update region
win.c:5352: Test failed: pixel should be black, color is ffffffff
win.c:5356: Test failed: pixel should be black, color is ffffffff
win.c:5361: Test failed: rects do not match (0,0)-(30,100) / (0,0)-(100,100)
win.c:5372: Test failed: wrong update region
win.c:5383: Test failed: wrong update region
Furthermore:
* Order is important: ntoskrnl.exe:ntoskrnl user32:monitor user32:win has the
extra failures, but not user32:monitor ntoskrnl.exe:ntoskrnl user32:win!
* And this is specific to Vista and Windows 7; probably because these failures
don't happen if there is no left-over ntoskrnl.exe dialog (including if it is
closed manually after running the test).
* This second point probably means that the left-over dialog changes the
user32:monitor behavior. But if so there is no indication of this in the
user32:monitor traces (and obviously no failure there).
--
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=43961
Bug ID: 43961
Summary: ntdll/info tests crash on arm
Product: Wine
Version: 2.20
Hardware: arm
OS: Linux
Status: NEW
Keywords: download, testcase
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Debian
Backtrace:
=>0 0xb0cc2000 (0xb132fcc0)
1 0xb1376970 func_info+0x2267()
[/home/austin/wine-git/dlls/ntdll/tests/info.c:1772] in ntdll_test (0xb132fcc0)
2 0xb1376970 func_info+0x2267()
[/home/austin/wine-git/dlls/ntdll/tests/info.c:1772] in ntdll_test (0xb132fff8)
3 0xb1337ebc main+0x2f3(argc=<is not available>, argv=<is not available>)
[/home/austin/wine-git/dlls/ntdll/tests/../../../include/wine/test.h:603] in
ntdll_test<elf> (0x00000000)
what's strange is arm is supposed to work:
https://source.winehq.org/git/wine.git/blob/039d267b0925273197a9edcf7664c4a…
1762 #if defined(__x86_64__) || defined(__i386__)
1763 *(unsigned char*)addr = 0xc3; /* lret ... in both i386 and
x86_64 */
1764 #elif defined(__arm__)
1765 *(unsigned long*)addr = 0xe12fff1e; /* bx lr */
1766 #elif defined(__aarch64__)
1767 *(unsigned long*)addr = 0xd65f03c0; /* ret */
1768 #else
1769 ok(0, "Add a return opcode for your architecture or expect a crash in
this test\n");
1770 #endif
1771 trace("trying to execute code in the readwrite only mapped anon
file...\n");
1772 f = addr;f();
1773 trace("...done.\n");
--
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=36145
Bug ID: 36145
Summary: valgrind shows several leaks in imm32/tests/imm32.c
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: imm32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==32120== 180 bytes in 1 blocks are definitely lost in loss record 621 of 863
==32120== at 0x7BC4C6B7: notify_alloc (heap.c:255)
==32120== by 0x7BC50EFB: RtlAllocateHeap (heap.c:1716)
==32120== by 0x5021822: create_window_handle (win.c:227)
==32120== by 0x5025308: WIN_CreateWindowEx (win.c:1450)
==32120== by 0x50261E8: CreateWindowExA (win.c:1719)
==32120== by 0x4A3468E: ImmGetContextThreadFunc (imm32.c:429)
==32120== by 0x7BC87017: ??? (signal_i386.c:2571)
==32120== by 0x7BC87060: call_thread_func (signal_i386.c:2630)
==32120== by 0x7BC86FF5: ??? (signal_i386.c:2571)
==32120== by 0x7BC8E43C: start_thread (thread.c:428)
==32120== by 0x4218F92: start_thread (pthread_create.c:309)
==32120== by 0x431D7ED: clone (clone.S:129)
==32120== 152 bytes in 1 blocks are definitely lost in loss record 609 of 863
==32120== at 0x7BC4C6B7: notify_alloc (heap.c:255)
==32120== by 0x7BC50EFB: RtlAllocateHeap (heap.c:1716)
==32120== by 0x7B8457FF: HeapAlloc (heap.c:271)
==32120== by 0x7B845B34: GlobalAlloc (heap.c:388)
==32120== by 0x4F5C176: ImmCreateIMCC (imm.c:2738)
==32120== by 0x4F55986: ImmCreateContext (imm.c:682)
==32120== by 0x4F57F63: ImmGetContext (imm.c:1422)
==32120== by 0x4A346A4: ImmGetContextThreadFunc (imm32.c:433)
==32120== by 0x7BC87017: ??? (signal_i386.c:2571)
==32120== by 0x7BC87060: call_thread_func (signal_i386.c:2630)
==32120== by 0x7BC86FF5: ??? (signal_i386.c:2571)
==32120== by 0x7BC8E43C: start_thread (thread.c:428)
==32120== by 0x4218F92: start_thread (pthread_create.c:309)
==32120== by 0x431D7ED: clone (clone.S:129)
==32120==
==32448== 20 bytes in 1 blocks are definitely lost in loss record 198 of 861
==32448== at 0x7BC4C6B7: notify_alloc (heap.c:255)
==32448== by 0x7BC50EFB: RtlAllocateHeap (heap.c:1716)
==32448== by 0x7B8457FF: HeapAlloc (heap.c:271)
==32448== by 0x7B846650: GlobalReAlloc (heap.c:693)
==32448== by 0x4F7C25A: ImmReSizeIMCC (imm.c:2778)
==32448== by 0x5BCEC73: GenerateIMEMessage (ime.c:474)
==32448== by 0x5BD06C2: ImeSetCompositionString (ime.c:899)
==32448== by 0x4F7AAC6: ImmSetCompositionStringW (imm.c:2293)
==32448== by 0x4F7A925: ImmSetCompositionStringA (imm.c:2255)
==32448== by 0x4E4D99D: test_ImmNotifyIME (imm32.c:257)
==32448== by 0x4E541EB: func_imm32 (imm32.c:1409)
==32448== by 0x4E5507D: run_test (test.h:584)
==32448== by 0x4E5546B: main (test.h:654)
==32448==
--
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=36401
Bug ID: 36401
Summary: valgrind shows an unitialized variable in
dxgi/factory.c (dxgi/tests/device.c)
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==21110== Conditional jump or move depends on uninitialised value(s)
==21110== at 0x5168715: wined3d_swapchain_decref (swapchain.c:75)
==21110== by 0x50E7568: wined3d_device_uninit_3d (device.c:1090)
==21110== by 0x5083655: dxgi_swapchain_Release (swapchain.c:82)
==21110== by 0x4A97019: func_device (dxgi.h:1733)
==21110== by 0x4A98EEA: run_test (test.h:584)
==21110== by 0x4A94C3E: main (test.h:654)
==21110== Uninitialised value was created by a stack allocation
==21110== at 0x507FF5C: dxgi_factory_CreateSwapChain (factory.c:186)
==21110==
dxgi/tests/device.c
--
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=49182
Bug ID: 49182
Summary: dwriter/analyzer test run Microsoft OneNote on windows
armv7/surface rt
Product: Wine
Version: 5.8
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Depends on: 49179
Distribution: ---
Created attachment 67197
--> https://bugs.winehq.org/attachment.cgi?id=67197
screenshot
This is a weird one; unfortunately I don't have a non arm install of windows
with office to test.
If I run winetest.exe on arm, when dwrite/analyzer runs, something starts
Microsoft OneNote (which I've never used). This pops up a dialog from OneNote,
saying:
You have to run OneNote for the first time before we can do that. We're sorry.
Please try again after you've started OneNote.
--
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=28745
Bug #: 28745
Summary: dsound/tests: uninitialized value used in
enum_callback() in func_propset()
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Running "make propset.ok" in dsound/tests, valgrind complains:
Conditional jump or move depends on uninitialised value(s)
at callback (propset.c:69)
by DSPROPERTY_enumWtoA (propset.c:396)
by enum_callback (propset.c:306)
by enumerate_mmdevices (dsound_main.c:555)
by DSPROPERTY_EnumerateW (propset.c:334)
by IKsPrivatePropertySetImpl_Get (propset.c:419)
by func_propset (propset.c:458)
by run_test (test.h:556)
by main (test.h:624)
Uninitialised value was created by a stack allocation
at enum_callback (propset.c:282)
I haven't bisected, but lots of the related code is new, from:
commit 8856ea79f3468d6f532f5f20e9b28c295d6e1db1
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Tue Sep 27 08:51:33 2011 -0500
dsound: Reimplement PropertySet on mmdevapi.
--
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=49180
Bug ID: 49180
Summary: devenum_test.exe fails to run on windows arm
(msvfw32.dll is missing)
Product: Wine
Version: 5.8
Hardware: arm
OS: Windows
Status: NEW
Keywords: download, testcase
Severity: normal
Priority: P2
Component: testcases
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Depends on: 49179
After working around bug 49179, winetest.exe will run. As it's extracting the
tests, it throws an error dialog for devenum, because msvfw32.dll is missing:
The program can't start because msvfw32.dll is missing from your computer. Try
reinstalling the program to fix this problem.
--
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=39956
Bug ID: 39956
Summary: dlls/urlmon/tests/uri.c fails a lot of tests
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: urlmon
Assignee: wine-bugs(a)winehq.org
Reporter: dev.anshuman73(a)gmail.com
Hi, I was running the WineTests on Windows 10, Build 1511, November fix.
Uri.c gives a lot of errors as described in this paste -
http://pastebin.com/X7fR1Bvx
I ran the winetest from http://test.winehq.org/ and downloaded the test as of 8
January (Version 4
Tests from build d7e4193df2f22a87031e44ce358a626a5f92b295)
--
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=28216
Summary: shell32/shlfolder.c test always fails on ubuntu 10.04?
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
(Not quite the same as bug 27729.)
shell32/shlfolder.ok succeeds for me on my ubuntu 11.04 boxes, but
always fails for me on my one ubuntu 10.04 box,
even after I do 'apt-get install gettext' to get past non bug 28208.
Log shows:
../../../tools/runtest -q -P wine -M shell32.dll -T ../../.. -p
shell32_test.exe.so shlfolder.c && touch shlfolder.ok
fixme:shdocvw:IEParseDisplayNameWithBCW stub: 0x0 L"http:\\yyy" (nil) 0x32fc78
fixme:shdocvw:IEParseDisplayNameWithBCW stub: 0x0 L"xx:yyy" (nil) 0x32fc78
err:shell:HCR_GetFolderAttributes should be called for simple PIDL's only!
shlfolder.c:2386: Test failed: SHCreateItemFromParsingName returned 0
The test creates the file c:/users/dank/Desktop/testfile,
then looks for it with some arcane shell folder API,
and is unhappy when it actually finds the file.
+shell,+file trace attached.
The test function in question is test_SHCreateShellItem().
I can make the test succeed by inserting the line
SetCurrentDirectoryA("c:\\");
at the top of the function, or by
editing test_ITEMIDLIST_format()
and inserting a return before it calls SetCurrentDirectoryW().
So there seems to be something fragile in the shlfolder tests
with respect to the current directory. No idea why this only
shows up on ubuntu 10.04 (on my i7 test box).
--
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=36654
Bug ID: 36654
Summary: valgrind shows invalid read/write in
d3d8/tests/device.c
Product: Wine
Version: 1.3.30
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, valgrind
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==6361== Invalid read of size 4
==6361== at 0x5E0EB00: ??? (in /tmp/.glZDO9Wy (deleted))
==6361== by 0x5160AE4: fixup_extensions (directx.c:1542)
==6361== by 0x5166F86: wined3d_adapter_init_gl_caps (directx.c:3131)
==6361== by 0x516C459: wined3d_adapter_init (directx.c:5180)
==6361== by 0x516C9B2: wined3d_init (directx.c:5272)
==6361== by 0x5215953: wined3d_create (wined3d_main.c:105)
==6361== by 0x50E0716: d3d8_init (directx.c:413)
==6361== by 0x50D47D2: Direct3DCreate8 (d3d8_main.c:47)
==6361== by 0x4F6AD2A: test_device_window_reset (device.c:2982)
==6361== by 0x4F7D127: func_device (device.c:6224)
==6361== by 0x4F9EC1E: run_test (test.h:584)
==6361== by 0x4F9F00D: main (test.h:654)
==6361== Address 0xe92a7c0 is on thread 1's stack
==6361==
==6361== Invalid write of size 4
==6361== at 0x5E0EB0D: ??? (in /tmp/.glZDO9Wy (deleted))
==6361== by 0x5160AE4: fixup_extensions (directx.c:1542)
==6361== by 0x5166F86: wined3d_adapter_init_gl_caps (directx.c:3131)
==6361== by 0x516C459: wined3d_adapter_init (directx.c:5180)
==6361== by 0x516C9B2: wined3d_init (directx.c:5272)
==6361== by 0x5215953: wined3d_create (wined3d_main.c:105)
==6361== by 0x50E0716: d3d8_init (directx.c:413)
==6361== by 0x50D47D2: Direct3DCreate8 (d3d8_main.c:47)
==6361== by 0x4F6AD2A: test_device_window_reset (device.c:2982)
==6361== by 0x4F7D127: func_device (device.c:6224)
==6361== by 0x4F9EC1E: run_test (test.h:584)
==6361== by 0x4F9F00D: main (test.h:654)
==6361== Address 0xaaaaaaaa is on thread 1's stack
==6361==
OpenGL renderer string: GeForce GTX 460/PCIe/SSE2
OpenGL core profile version string: 4.3.0 NVIDIA 337.25
--
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=28269
Summary: ws2_32: sock.ok test slow
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The ws2_32 sock tests take 30 to 55 seconds to run here.
This is currently the slowest test in the suite.
--
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=28394
Summary: Crash in wininet/http.ok if connection fails?
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Probably the test should skip if the connection fails.
We should also check to see what native InternetQueryOption does
on a failed connection (if we don't already; we do check what it does on
a closed one, at least).
Here's the log:
../../../tools/runtest -q -P wine -M wininet.dll -T ../../.. -p
wininet_test.exe.so http.c && touch http.ok
...
err:wininet:NETCON_secure_connect SSL_connect failed: 12056
wine: Unhandled page fault on read access to 0x00000008 at address
0x2abec87c5798 (thread 0037), starting debugger...
http.c:2873: Test failed: HttpSendRequest failed: 12056
Backtrace:
=>0 NETCON_GetCert+0x18(connection=(nil)) [dlls/wininet/netconnection.c:860]
1 HTTPREQ_QueryOption+0x887(hdr=0x3cab0, option=0x20, buffer=0x415e0,
size=0x22fa18, unicode=0) [dlls/wininet/http.c:2123]
2 InternetQueryOptionA+0x12b(hInternet=0x3, dwOption=0x20, lpBuffer=0x415e0,
lpdwBufferLength=0x22fa18) [dlls/wininet/internet.c:2518]
3 test_secure_connection+0x35b() [dlls/wininet/tests/http.c:2885]
NETCON_GetCert+0x18 [dlls/wininet/netconnection.c:860] in wininet: movq
0x0000000000000008(%rax),%rax
860 if (!connection->ssl_s)
--
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=16060
Summary: comctl32, gfi32, user32: tests fail, when dpi is not the
default (96)
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Created an attachment (id=17288)
--> (http://bugs.winehq.org/attachment.cgi?id=17288)
patch to dump tm.tmHeight
(As requested by Dmitry, one bug for all)
Current known tests, that fail, when dpi is not 96
(The Implementation was not checked yet):
comctrl32:monthcal
comctrl32:rebar
comctrl32:status
comctrl32:tab
comctrl32:toolbar
comctrl32:treeview
gdi:font
user32:combo
Implementations known to have bugs, where the related tests are fixed:
comctl32/header (VERT_BORDER must be 2)
Fixing the heigh of the system font will make more hidden bugs
in the Wine tree visible.
----------------------
A difference found during research is the tm.tmHeight of the system font.
(GetTextMetrics)
w98 (72, 96 dpi): 16
w98 (120): 20
w98 is broken for 144 and 192 dpi: 16
w2k (72, 96 dpi): 16
w2k (120, 144, 192 dpi): 20
Wine: always 16
The attached patch for dlls/comctrl32/tests/status.c dump
tm.tmHeight (the first value after "expect")
--
By by ... Detlef
--
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=43342
Bug ID: 43342
Summary: valgrind shows an unintialized write in
dlls/hid/tests/device.c
Product: Wine
Version: 2.12
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: hid
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Gentoo
../../../tools/runtest -q -P wine -T ../../.. -M hid.dll -p hid_test.exe.so
device && touch device.ok
==10687== Syscall param writev(vector[...]) points to uninitialised byte(s)
==10687== at 0x4339023: __writev_nocancel (syscall-template.S:84)
==10687== by 0x7BC88028: send_request (server.c:228)
==10687== by 0x7BC881DB: wine_server_call (server.c:309)
==10687== by 0x7BC4A5AA: server_ioctl_file (file.c:1543)
==10687== by 0x7BC4A914: NtDeviceIoControlFile (file.c:1650)
==10687== by 0x7B44634D: DeviceIoControl (file.c:2651)
==10687== by 0x4B229B1: HidD_GetPreparsedData (hidd.c:133)
==10687== by 0x4876EBA: test_device_info (device.c:41)
==10687== by 0x48771C2: run_for_each_device (device.c:83)
==10687== by 0x4878870: func_device (device.c:386)
==10687== by 0x48796C8: run_test (test.h:603)
==10687== by 0x4879B19: main (test.h:687)
==10687== Address 0x48e7b38 is 0 bytes inside a recently re-allocated block of
size 9,296 alloc'd
==10687== at 0x7BC50812: notify_alloc (heap.c:254)
==10687== by 0x7BC54C93: RtlAllocateHeap (heap.c:1716)
==10687== by 0x4B22982: HidD_GetPreparsedData (hidd.c:131)
==10687== by 0x4876EBA: test_device_info (device.c:41)
==10687== by 0x48771C2: run_for_each_device (device.c:83)
==10687== by 0x4878870: func_device (device.c:386)
==10687== by 0x48796C8: run_test (test.h:603)
==10687== by 0x4879B19: main (test.h:687)
==10687== Uninitialised value was created by a client request
==10687== at 0x7BC505E1: mark_block_uninitialized (heap.c:208)
==10687== by 0x7BC5076D: initialize_block (heap.c:239)
==10687== by 0x7BC54CB3: RtlAllocateHeap (heap.c:1717)
==10687== by 0x4B22982: HidD_GetPreparsedData (hidd.c:131)
==10687== by 0x4876EBA: test_device_info (device.c:41)
==10687== by 0x48771C2: run_for_each_device (device.c:83)
==10687== by 0x4878870: func_device (device.c:386)
==10687== by 0x48796C8: run_test (test.h:603)
==10687== by 0x4879B19: main (test.h:687)
==10687==
--
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=44092
Bug ID: 44092
Summary: user32:sysparams test in Windows permanently
vertically shortens the test shell window
Product: Wine
Version: 2.22
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: parkerjbarker(a)yahoo.com
When I run the 64 bit winetest under Vista Ultimate 64-bit, I find that it's
the user32:sysparams test that shortens the test shell window vertically, so
that the status bar (showing how many tests have failed) is now half-showing.
The wine test shell window is not being properly restored.
--
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=51390
Bug ID: 51390
Summary: On Vista to Windows 8.1 part of mscoree:mscoree fails
to run, breaks user32:win
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
On Vista to Windows 8.1 part of mscoree:mscoree fails to run, causing Windows
to open a "loadpaths.exe has stopped working" dialog (see the screenshots for
the TestBot WineTest runs on wvistaadm, w2008s64, w7u_2qxl and w8). Despite
that mscoree:mscoree succeeds.
However it leaves that dialog open which then causes two failures in
user32:win:
https://test.winehq.org/data/patterns.html#user32:win
win.c:3394: Test failed: GetActiveWindow() = 00000000
win.c:3394: Test failed: GetFocus() = 00000000
Notes:
* Opening a simple notepad windows (or even notepad's Open File dialog) does
not cause user32:win to fail. So there is something 'special' about the
loadpaths.exe dialog.
* w864 does not have the issue because it appears to be missing the required
.Net support and thus does not trigger this dialog:
mscoree.c:197: Tests skipped: No legacy .NET runtimes are installed
So:
* Maybe something is wrong with the .Net setup on these VMs. But it's more
likely to be a version mismatch issue.
* Maybe mscoree should avoid triggering the loadpaths.exe dialog.
* Or maybe mscoree should detect and close the loadpaths.exe dialog.
* Or user32:win should be more resilient.
--
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=47471
Bug ID: 47471
Summary: World of Warcraft, 8.2.0 New zone Nazjatar
Product: vkd3d
Version: 1.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: eaglecomputers.ok(a)gmail.com
Distribution: ---
Game freezes completely when loading into the new zone, if DX12 is being used,
but works fine if you use DX11 with DXVK.
--
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=48855
Bug ID: 48855
Summary: Borderlands 3: Unable to save
Product: Wine
Version: 5.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mrs11teen(a)gmail.com
Distribution: ArchLinux
Created attachment 66779
--> https://bugs.winehq.org/attachment.cgi?id=66779
Terminal output
When I load into a save file in Borderlands 3 with wine 5.4 or 5.5, an in-game
message is displayed warning me that my "settings have failed to save." Any
progress fails to save, and next time I load the game I am back where I
started.
This issue seems to be a regression that occurred with wine version 5.4 and
that persists with version 5.5. I've tested 5.3 and 5.2 and have not
encountered this issue.
The current line is repeated a number of times in the terminal while the game
attempts to save, I'm not sure if it's relevant to the error.
0104:fixme:file:ReplaceFileW Ignoring flags 6
The full terminal output (which includes output from the Epic Games launcher as
well) is attached.w
--
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=30993
Bug #: 30993
Summary: diablo 3 d3d device error
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cleverca22(a)gmail.com
Classification: Unclassified
Created attachment 40680
--> http://bugs.winehq.org/attachment.cgi?id=40680
WINEDEBUG=trace+d3d output
when running diablo 3 on wine version d35cb8164a7635201c2ccdf73de2a78cebf6cb94
the game comes up with a fullscreen grey window (same as windows just before 3d
loads)
and gives an alert box with this message:
"graphics error
click to retry creating d3d device
click ok to retry"
clicking OK a few times changes the message slightly, to have retry/cancel,
retry just keeps retrying, cancel gives up as expected
--
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=51218
Bug ID: 51218
Summary: Can not set zero disk volume serial number
Product: Wine
Version: 6.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ravenexp(a)gmail.com
Distribution: ---
When .wine/drive_c/.windows-serial file does not exist or contains 00000000
the following volume serial number is reported:
c:\>vol
Volume in drive c has no label.
Volume Serial Number is 4300-0000
In the previous Wine versions the default volume serial number was 00000000
and the zero serial number could be set via .windows-serial.
This regression broke the registration of a Windows program
I can't get a new registration key for.
--
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=32533
Bug #: 32533
Summary: QQDict: a button can't be displayed normally
Product: Wine
Version: 1.5.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
Created attachment 42928
--> http://bugs.winehq.org/attachment.cgi?id=42928
The Log
I installed QQDict in wine 1.5.20 and found that a botton in it can't be
displayed normally(as picture 1 in attachments).
I found that 'winetricks -q ie7' help a lot, just as the picture 2 in
attachments.
--
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=51321
Bug ID: 51321
Summary: Some Chinese characters aren't rendered correctly in
Foxmail.
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jactry92(a)gmail.com
Distribution: ---
Created attachment 70181
--> https://bugs.winehq.org/attachment.cgi?id=70181
Chinese characters were rendered correctly.
Steps to reproduce:
1. `winetricks -q arial` to work around a crash of CEF.
2. `wine FoxmailSetup_7.2.21.453.exe` for installing Foxmail.
3. `export LANG=zh_CN.UTF-8 LANGUAGE=zh_CN.UTF-8 LC_ALL=zh_CN.UTF-8` to switch
to a Simplified Chinese locale.
4. `cd ~/.wine/drive_c/Foxmail\ 7.2/` and `wine Foxmail.exe`, then select the
first(腾讯邮箱) or the second(mail.qq.com) icon in the dialog.
Expected: All characters are rendered correctly.
Actually: Chinese characters are rendered as some boxes.
Wine version: wine-6.11-58-gfd7954974b9
--
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=46592
Bug ID: 46592
Summary: Heroes III Horn of the Abyss TCP/IP issue
Product: Wine
Version: 3.0.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dplay
Assignee: wine-bugs(a)winehq.org
Reporter: kudraigor29(a)gmail.com
Distribution: ---
Created attachment 63485
--> https://bugs.winehq.org/attachment.cgi?id=63485
Debug log
TCP/IP window closes on create a host multiplayer 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.
http://bugs.winehq.org/show_bug.cgi?id=24501
Summary: Games For Windows - Live: client doesn't start with
mono
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
It wants .Net 3.5, but that doesn't work in wine. In mono, fails with:
** (GFWLClient.exe:8): WARNING **: The following assembly referenced from
C:\Program Files\Microsoft Games for Windows - LIVE\Client\GFWLClient.exe could
not be loaded:
Assembly: PresentationFramework (assemblyref_index=2)
Version: 3.0.0.0
Public Key: 31bf3856ad364e35
The assembly was not found in the Global Assembly Cache, a path listed in the
MONO_PATH environment variable, or in the location of the executing assembly
(C:\Program Files\Microsoft Games for Windows - LIVE\Client\).
which is WPF, and according to Mono, http://mono-project.com/WPF, they have no
plans to implement (big project, not much reward).
I'm filing a bug here mostly to collect duplicates. If a lot of duplicates show
up, perhaps Novell/Mono will change their mind...
To reproduce:
$ winetricks -q gfw mono26
$ cd .wine/drive_c/Program\ Files/Microsoft\ Games\ for\ Windows\ -\
LIVE\Client
$ wine GFWLClient.exe
--
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=8606
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #43 from Alexandre Julliard <julliard(a)winehq.org> ---
Closing bugs fixed in 6.12.
--
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=46595
Bug ID: 46595
Summary: Rainbow Six Siege hangs on Uplay splash screen
Product: Wine
Version: 4.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: riesi(a)opentrash.com
Distribution: ---
Created attachment 63492
--> https://bugs.winehq.org/attachment.cgi?id=63492
Log without specific debug channels
To make this clear the game is Battleye protected, but it does not even get far
enough to load Battleye. At least I could not see any traces of a Battleye dll
when looking at the logs with +loaddll.
So the problem is that the game hangs on the Uplay splash screen and doesn't do
anything else after that. There is no continuous log output or anything. It
just sits there.
The part of the log that's interesting for this issue is at the bottom of the
file after:
0034:fixme:secur32:schannel_get_mac_algid unknown algorithm 200, cipher 23
This is all the output that is generated when the game tries to start and after
its killed.
If you need any additional logging with specific WINEDEBUG channels, I am happy
to assist.
Thanks in advance,
Riesi
--
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=34643
Bug #: 34643
Summary: The Bureau XCOM Declassified crashes immediately
Product: Wine
Version: 1.7.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arathorn2nd(a)gmail.com
Classification: Unclassified
Created attachment 46171
--> http://bugs.winehq.org/attachment.cgi?id=46171
crash backtrace
When starting the game, wine crashes imediately. Installed correctly, thou,
using a clean wineprefix created with WINEARCH="win32"
Seems related to wxWidgets.
$ env WINEPREFIX="$(pwd)/wine" wine TheBureau.exe
wine: Unhandled page fault on read access to 0xfffffff8 at address 0x3ba5a1a
(thread 0009), starting debugger...
...
Backtrace:
=>0 0x03ba5a1a in wxmsw28u_vc_custom (+0x5a1a) (0x0386f688)
...
--
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=51225
Bug ID: 51225
Summary: regression - Warframe colors messed up - wine staging
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pmargeti34(a)gmail.com
Distribution: ---
Created attachment 70092
--> https://bugs.winehq.org/attachment.cgi?id=70092
Rainbow colors
See attached screenshot please.
--
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=51052
Bug ID: 51052
Summary: 6.4 regression: 32-bit Cheat Engine attaching its
debugger leads to the target process crashing
Product: Wine
Version: 6.4
Hardware: x86-64
URL: https://cheatengine.org/downloads.php
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: subgraph93(a)gmail.com
Regression SHA1: af74bd31229e0f065448253b248ec0cb3b51af26
Distribution: Ubuntu
Steps to reproduce:
1) Install Cheat Engine (version 7.2 is affected, so is 7.1).
2) Start up cheatengine-i386.exe.
3) In the same prefix, start up the target process. No other software is
needed, because the issue can be reproduced with CE tutorials. To start up the
tutorial, open the "Help" dropdown menu and click the "Cheat Engine Tutorial"
entry.
4) Open the process selection window: File > Open Process; or just click the
flashing icon that shows the computer display with a magnifying glass.
5) In the "Applications" view (it is probably default), there should be an
entry for Cheat Engine itself, and one for "Tutorial-i386". Select the latter
entry, then click "Attach debugger to process", then click "Yes" in the
confirmation modal.
6) When the debugger attaches (should be near-instant for release builds, but
unoptimized builds can take about a minute), the process selection window will
close. At this point, the target process may crash already, but in some cases
it may still work. If the tutorial window still displays, switching focus to it
should cause the crash. In some cases, the target process crashes before this
happens, and Cheat Engine gives a "failed to attach debugger" error instead.
Logs almost always have the following entry (thread ID and the address may
vary):
013c:err:seh:NtRaiseException Unhandled exception code c000008f flags 0 addr
0xf7b80644
In one case (on a dirty prefix, which may or may not matter; the issue
otherwise still happens on a clean prefix), the error code was not c000008f,
but c00002b5. In some cases as well, in addition to the above error and
immediately before it, the following is output:
01d0:fixme:seh:fpe_handler untested SIMD exception: 0x6. Might not work
correctly
I didn't notice other major differences in console logs compared to working
Wine versions, so I didn't attach complete terminal outputs.
Regression testing (which I hope I did correctly) points to:
commit af74bd31229e0f065448253b248ec0cb3b51af26
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Tue Mar 2 18:52:44 2021 +0100
ntdll: Use syscall dispatcher to restore context in NtSetContextThread.
Signed-off-by: Jacek Caban <jacek(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
Other notes:
1) Ubuntu 20.10
2) Wine 6.7 (devel and staging) are still affected.
3) 64-bit Cheat Engine crashed neither 64-bit nor 32-bit target processes,
though it has issues working with 32-bit target processes.
4) This can be reproduced with most, but not all target processes. I think
targeting a 64-bit process doesn't cause the issue, though I wouldn't expect
debugging to work anyway with 32-bit CE. For example of a process that didn't
crash, I couldn't crash winecfg. My testing seems to indicate that the behavior
of a process is consistent in terms of whether or not it crashes, how it
crashes, and what terminal messages are output; however, different processes
may have slightly different behavior.
--
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=49935
Bug ID: 49935
Summary: mismatch behavior in API function GetOpenFileName
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: ch.panel(a)free.fr
Distribution: ---
GetOpenFileName with filter show all files instead of filtering files : ex:
("PDF files|*.PDF" as filter show not only PDF files. We have to validate the
dialog for the filter to oper.
--
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=46960
Bug ID: 46960
Summary: Mono's interactive C# shell crashes when typing a
character
Product: Wine
Version: 4.5
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
Mono ships with an interactive C# interpreter, located at
lib/mono/4.5/csharp.exe. This can be run directly from inside a Wine Mono
install.
It crashes with an ArgumentOutOfRangeException the first time a character is
typed.
System.ArgumentOutOfRangeException: Console key values must be between 0 and
255 inclusive.
Parameter name: key
at System.ConsoleKeyInfo..ctor (System.Char keyChar, System.ConsoleKey key,
System.Boolean shift, System.Boolean alt, System.Boolean control) [0x0000c] in
<72b294be54bc4854bce603b664bafd63>:0
at System.WindowsConsoleDriver.ReadKey (System.Boolean intercept) [0x00079]
in <72b294be54bc4854bce603b664bafd63>:0
--
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=28393
Summary: WiX light can't find files in deeply-nested
directories
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sam(a)robots.org.uk
Created an attachment (id=36407)
--> (http://bugs.winehq.org/attachment.cgi?id=36407)
depth.tar
The attached test case fails to run under Wine with the following error:
Z:\home\sam\src\wix-test\depth\A.wxs(8) : error LGHT0103 : The system cannot
find the file
'Z:\home\sam\src\wix-test\depth\A\AOL\Aachen\Aaliyah\Aaron\Abbas\Abbasid\Abbott\Abby\Abdul\Abe\Abel\Abelard\Abelson\Aberdeen\Abernathy\Abidjan\Abigail\Abilene\Abner\Abraham\Abram\Abrams\Absalom\Abuja\Abyssinia\readme.txt'.
This happens with both Mono 2.10.5 and Microsoft .NET 2.0. Unpack the test case
and run 'make' and it should create a fresh WINEPREFIX in which it will install
the test pre-requisites before running the test itself.
On a Windows 7 machine, light is able to correctly build B.msi.
--
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=51257
Bug ID: 51257
Summary: Wine 6.10 regression, crash after
"_Locinfo__Locinfo_ctor_cat_cstr" message in CLI
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: kle(a)bluewin.ch
Distribution: ---
Hi
It looks that I have found a new little regression in Wine 6.10.
When I open certain games like "Crash Tag Team Racing" in the CXBX-R Xbox
emulator there is mentioned at the CLI the following message:
0134:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0823F92C 1 C) semi-stub
0134:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0823F7AC 1 C) semi-stub
0134:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0823F8FC 1 C) semi-stub
wine: Unhandled page fault on write access to 0000000000000008 at address
000000006F2014F0 (thread 00a4), starting debugger...
The same game worked in Wine devel 6.9 and 6.8 so far that it could be started
and played. The sole limitation was that the saving of the game data (inside
the emulator) was not possible. Every time when this has been tried I get at
the CLI the following message (but the game doesn't crash):
0160:fixme:file:NtCreateFile alloc_size not supported
0160:fixme:file:NtSetInformationFile Unsupported class (19)
0160:fixme:file:NtCreateFile alloc_size not supported
0160:fixme:file:NtSetInformationFile Unsupported class (19)
0160:fixme:file:NtCreateFile alloc_size not supported
0160:fixme:file:NtSetInformationFile Unsupported class (19)
0160:fixme:file:NtCreateFile alloc_size not supported
0160:fixme:file:NtSetInformationFile Unsupported class (19)
So out of mine view, there was a regression in Wine 6.10. Unfortunately I am
not sure where the root of the problem is. It looks that in Wine 6.10 the
"NtCreateFile alloc_size" is now present, otherwise I would get the same
information at the CLI as before.
Whatever, other games, which doesn't use the same system calls work normally.
Except that these are limited in saving the game data within CXBX-R (which is a
common issue under Wine). More information about the current state of that
emulator in newer Wine versions can be found here:
https://github.com/Cxbx-Reloaded/Cxbx-Reloaded/issues/2161
Unfortunately, to reproduce this error, the emulator and an affected game like
"Crash Tag Team Racing" is necessary. The CXBX-R build I tested can be found
here: https://github.com/Cxbx-Reloaded/Cxbx-Reloaded/releases/tag/CI-ba9ee5f
The "winetricks -q d3dcompiler_47" argument is needed, the built-in dll doesn't
work. That's it. ;-)
--
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=50209
Bug ID: 50209
Summary: S.T.A.L.K.E.R.: Call of Pripyat needs
D3DX10CreateTextureFromMemory implementation
Product: Wine
Version: 5.22
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3d-util
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Enhanced full dynamic lighting (DX10)
fixme:d3dx:D3DX10CreateTextureFromMemory device 00196A3C, src_data 08E05427,
src_data_size 65664, loadinfo 0031D09C, pump 00000000, texture 0031D098,
hresult 00000000, stub!
wine-5.22-195-gcbca9f847f6
--
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=27133
Summary: WiX 3.5 generates broken MSI files when 2 files of
identical size are added to the same installer
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sam(a)robots.org.uk
Created an attachment (id=34643)
--> (http://bugs.winehq.org/attachment.cgi?id=34643)
test case
The attached test case will generate an installer that installs two files to
'ProgramFilesFolder\duplicate file test'.
when run on Windows, the installer works fine. When run under Wine, the
installer installs the contents of file1.txt into file2.txt.
This only happens with Wix 3.5. This version added a feature called "smart
cabbing" that detects duplicate files in an installer and only embeds one copy.
This may be going haywire when run under Wine.
To run the test case, you will need Mono
<http://ftp.novell.com/pub/mono/archive/2.10.2/windows-installer/5/mono-2.10…>
and WiX 3.5 <http://wix.codeplex.com/releases/view/60102#DownloadId=204417>.
You
will need to put WiX's tools in Wine's PATH, or modify build.sh to give the
full path to the WiX tools when it invokes light and candle.
--
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=51266
Bug ID: 51266
Summary: S.T.A.L.K.E.R. Anomaly 1.5.1: AI Targeting Is Broken
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jpreston0(a)yahoo.com
Distribution: ---
Version of application:
1.5.1 from
https://www.moddb.com/mods/stalker-anomaly/downloads/stalker-anomaly-151
Wine versions tested:
Wine-staging 6.9
Wine-staging 6.10 from 3 sources: Fedora repos, WineHQ repos, TkG
Synopsis:
Starting in Wine 6.10, most of the AI in S.T.A.L.K.E.R. Anomaly are incapable
of targeting other NPCs or the player and NPCs are unable to fire their weapons
at a target. The player is still able to perform normal functions. Game's
console (~) doesn't show anything unusual when compared between 6.9 and 6.10.
Of the three sources of 6.10 tested: one from the Fedora repos, one from the
WineHQ Fedora repos, and a Wine with additional patches, all three exhibited
the same behavior.
Video of issue in 6.10:
https://streamable.com/cm5io0
Zombified NPCs don't target and fire at the player, only move to the last
position of the player if they make noise or injure them. Zombies don't melee
the player, simply continually walk into the player. NPCs aren't shooting the
zombifieds or zombies. Enemy NPCs run away and don't fire at the player. The
only functioning AI is the bloodsucker which is still partially broken and
takes several seconds to acknowledge the player is there. The issue is
intermittent, sometimes a single AI will begin working after several seconds.
However after relaunching the game the behavior will change and they may stop
working.
Video of what is the normal outcome in 6.9 and previous versions:
https://streamable.com/vcktk4
S.T.A.L.K.E.R. Anomaly is free and standalone so can be tested easily. Only
requires d3dx11_43, d3dcompiler_43, and d3dx9 to run, with dxvk to get
acceptable framerates. Debug mode can be entered by launching the game with
-dbg and hitting numpad 0 to enter flycam, enter to teleport player to camera
position. There's an unrelated Wine issue with the game crashing when opening
the options menu, so set resolution with the launcher if needed.
I haven't tested if this issue also happens in the base S.T.A.L.K.E.R. games or
other mods. And yes, I don't have any mods to Anomaly installed.
As for debug logs, I have no idea where to start.
--
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=51214
Bug ID: 51214
Summary: rundll.exe and winoldap.mod crash
Product: Wine
Version: 6.9
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression, source, win16
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
When run directly (e.g. `wine rundll.exe`, `wine winoldap.mod`) or when
launched via WinExec.
Both seem to crash the same way. It looks like wine is trying to execute the
fake executable.
Obviously a regression; I'll start working on a bisect if it's not already
obvious what the solution is.
--
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=21259
Summary: Visual C++ 2005 Trial build hangs on first run after a
reboot
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, testcase
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Created an attachment (id=25560)
--> (http://bugs.winehq.org/attachment.cgi?id=25560)
Shell script to download an example project, install Visual C++ 2005 trial, and
build the project.
Visual C++ can build projects from the commandline with
devenv projectname.sln /build Debug
but oddly, the first time you try this on Wine, it hangs.
^C and rerunning fixes it. After the ^C, you can see
mspdbsrv.exe -start -spawn
running, so evidently the first run spawned the
pdb service but then stumbled trying to connect to it;
the second run connected fine.
I'll attach a canned script that reproduces the problem from scratch.
--
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=49395
Bug ID: 49395
Summary: Altium Designer 20 crashes with E_NOINTERFACE
apparently from CreateDxgiSurfaceRenderTarget
Product: Wine
Version: 5.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: me+wine(a)shane.sh
Distribution: ---
Created attachment 67463
--> https://bugs.winehq.org/attachment.cgi?id=67463
Crash log from Altium
I'm trying to get Altium Designer 20 running in wine. I'm using wine-staging
5.10 with the msxml6 and dotnet461 winetricks. The winetricks are necessary to
get the application to start, and wine-staging because it includes a fix for
https://bugs.winehq.org/show_bug.cgi?id=46568. I'm also using the patch from
https://bugs.winehq.org/show_bug.cgi?id=49379.
The crash log from Altium indicates says that the C# function
SharpDX.Direct2D1.Factory.CreateDxgiSurfaceRenderTarget received a HRESULT of
E_NOINTERFACE. I don't understand how FFI works in C#, but SharpDX is
open-source and
https://github.com/sharpdx/SharpDX/blob/master/Source/SharpDX.Direct2D1/Map…
and
https://github.com/sharpdx/SharpDX/blob/master/Source/SharpDX.Direct2D1/Ren…
seem like relevant parts of the code. Presumably though this just gets mapped
to d2d_factory_CreateDxgiSurfaceRenderTarget from dlls/d2d1/factory.c.
Also relevant is that the following shows up in STDERR when running wine at the
same time as the crash:
00c4:fixme:d2d:d2d_d3d_create_render_target Ignoring render target usage 0x2.
And d2d_d3d_create_render_target is indeed called at the end of
d2d_factory_CreateDxgiSurfaceRenderTarget, so it seems to get at least that
far.
But from reading the source of d2d_d3d_create_render_target, I don't see how it
could ever return E_NOINTERFACE without at least printing some additional
warnings, but I don't see any.
Any help would be greatly appreciated!
--
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=34045
Bug #: 34045
Summary: Gray Matter demo needs .NET Framework and DirectX for
launching
Product: Wine
Version: 1.6-rc5
Platform: x86
URL: http://www.fileplanet.com/217641/210000/fileinfo/Gray-
Matter-Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
CC: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 45246
--> http://bugs.winehq.org/attachment.cgi?id=45246
config-log
Demo installs .NET Framework. No version showing. At the end of installation
has failed with that. I did installation manually from winetricks ver. 2.0 and
run config.exe
(see config log and pic)
I can't change the settings because of text in drop-down menus is missing.
Installation of Directx is solving this only partially.
--
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=51347
Bug ID: 51347
Summary: Installation for QQ cannot proceed
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: amie1972(a)163.com
Distribution: ---
Installation for QQ cannot proceed because "安装路径无效,您没有权限在此位置写入数据”。
--
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=51278
Bug ID: 51278
Summary: wine packages for ubuntu have dependency glitch
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: johnpgoodman(a)gmail.com
Distribution: ---
Created attachment 70162
--> https://bugs.winehq.org/attachment.cgi?id=70162
terminal output
Fresh kubuntu install then add backports ppa to update to latest kde then
install wine = fail due to dependency clash.
I'm not skilled in how apt works to give much more detail but terminal output
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=50793
Bug ID: 50793
Summary: Regression: Far Cry crashes on launch
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: alasky(a)codeweavers.com
Distribution: ---
Far Cry (running through Steam, steam app id:13520) crashes on launch with the
latest wine master (9107f591d3d73a3b4040db2e13ef51d9846591c9 from 20210309). I
ran a git bisect which blamed the following commit:
e341d1f695311725752c287057f6c6ab60fdf2a3
ntdll: Restore all non-volatile i386 registers in syscall dispatcher
I reverted the commit on the latest wine tip (which was messy and I had to
resolve a conflict, so treat with mild suspicion), and confirmed that the Far
Cry crash on launch was fixed with the commit reverted.
Attached is a +tid,+seh log of the crash on the latest wine master.
--
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=50506
Bug ID: 50506
Summary: Do not receive WM_INPUT messages for game controllers
registered with RegisterRawInputDevices
Product: Wine
Version: 6.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: lunarlambda(a)gmail.com
Distribution: ---
I am using RegisterRawInputDevices with HID_USAGE_PAGE_GENERIC,
HID_USAGE_GENERIC_JOYSTICK, and HID_USAGE_GENERIC_GAMEPAD.
My controller (Nintendo Switch Pro Controller) shows up in joy.cpl, and input
works.
The controller shows up in GetRawInputDeviceList, I can query it with
GetRawInputDeviceInfo, and opening it and getting the product name via
HidD_GetProductString also works.
However, my window simply never receives any WM_INPUT messages.
If I register a keyboard instead (HID_USAGE_GENERIC_KEYBOARD), using the same
code, I do get WM_INPUT messages.
I was hopeful that this had been fixed in 6.0, but I was looking through
dlls/user32/rawinput.c, but I cannot find anything indicative of a lack of
support.
--
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=33421
Bug #: 33421
Summary: Cypress PSoCCreator Installer fails with "You have
insufficient privileges to run CyInstaller..."
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: terry(a)maximatcher.com
Classification: Unclassified
wine-1.5.28-114-g60faef8
PSoCCreatorSetup_2.2_cp5.exe
wine runs the extractor, starts the PSoCCreator InstallShield Wizard, then
throws the error window with "You have insufficient privileges to run
CyInstaller. Please contact you(sic) administrator. CyInstaller will now exit"
--
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=51322
Bug ID: 51322
Summary: Clang-cl 12 fails on unimplemented function
KERNEL32.dll.GetProcessGroupAffinity
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: rpisl(a)seznam.cz
Distribution: ---
Clang-cl version 12 fails due to unimplemented function
GetProcessGroupAffinity().
Relevant source: https://llvm.org/doxygen/Windows_2Threading_8inc_source.html
A simple stub fixes the problem.
--
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=49457
Bug ID: 49457
Summary: Simple command in powershell 6 (pwsh) containing "$"
only works for me if the dollar sign is escaped
Product: Wine
Version: 5.11
Hardware: x86
URL: https://github.com/PowerShell/PowerShell/releases/down
load/v6.1.6/PowerShell-6.1.6-win-x64.msi
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
I tried simple command like
wine pwsh.exe /c $env:username
and it gives ":username"
If one escapes the dollarsign it works correctly:
wine pwsh.exe /c \$env:username
gives "louis"
When you first start powershell console like "wine start pwsh", and type in the
console it works correctly (without the escape character)
I tried 1st command in Windows 7 cmd, and it works correctly (so without having
to add the escape character)
(The same story above holds for powershell 2.0 in wine too, but that is more
troublesome to get installed due to few bugs in bugilla, so i files it here for
pwsh.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=48256
Bug ID: 48256
Summary: pwsh.exe (powershell) crashes after 20~50 sec:
System.EntryPointNotFoundException: Unable to find an
entry point named 'FreeAddrInfoEx' in DLL
'ws2_32.dll'.
Product: Wine
Version: 4.21
Hardware: x86
URL: https://github.com/PowerShell/PowerShell/releases/down
load/v6.1.6/PowerShell-6.1.6-win-x64.zip
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
See below. Just start pswh.exe and wait a while (or type anything)
I don`t know if FreeAddrInfoEx is exactly same as FreeAddrInfoExW so if it can
just be forwarded, so if anyone who knows more about winsock could fix this bug
that would be nice (note: FreeAddrInfoEx entry is present in win7 ws2_32)
Error in console:
An error has occurred that was not properly handled. Additional information is
shown below. The PowerShell process will exit.
Unhandled Exception: System.EntryPointNotFoundException: Unable to find an
entry point named 'FreeAddrInfoEx' in DLL 'ws2_32.dll'.
at Interop.Winsock.FreeAddrInfoEx(AddressInfoEx* pAddrInfo)
at
System.Net.NameResolutionPal.GetAddrInfoExContext.FreeContext(GetAddrInfoExContext*
context)
at System.Net.NameResolutionPal.ProcessResult(SocketError errorCode,
GetAddrInfoExContext* context)
at System.Net.NameResolutionPal.GetAddressInfoExCallback(Int32 error, Int32
bytes, NativeOverlapped* overlapped)
003c:fixme:advapi:RegisterEventSourceW ((null),L".NET Runtime"): stub
003c:fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000402,(nil),0x0001,0x00000000,0x1ba0d600,(nil)):
stub
003c:err:eventlog:ReportEventW L"Application: pwsh.exe\nCoreCLR Version:
4.6.28008.1\nDescription: The process was terminated due to an unhandled
exception.\nException Info: System.EntryPointNotFoundException: Unable to find
an entry point named 'FreeAddrInfoEx' in DLL 'ws2_32.dll'.\r\n at
Interop.Winsock.FreeAddrInfoE"...
--
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=49351
Bug ID: 49351
Summary: PowerShell-7.0.1-win-x64.msi fails to install
Product: Wine
Version: 5.10
Hardware: x86
URL: https://github.com/PowerShell/PowerShell/releases/down
load/v7.0.1/PowerShell-7.0.1-win-x64.msi
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
Created attachment 67388
--> https://bugs.winehq.org/attachment.cgi?id=67388
patch
>From the forum https://forum.winehq.org/viewtopic.php?f=2&t=33963
It pops up messagebox
"PowerShell requires the Windows Management Framework 4.0 or newer to be
installed to enable remoting over WinRM."
It checks for version of pwrshlplugin.dll; one could copy some wine system-dll
with high enough version resource to pwrshlplugin.dll, like i said in forum,
but as this dll is present on my win7, I guess we should just add it to wine.
Attached patch , will send to wine-devel.
Note: Check seems to come from
(https://github.com/PowerShell/PowerShell/blob/master/assets/Product.wxs)
<!-- Prerequisite check for Windows Management Framework -->
<Property Id="PWRSHPLUGIN_VERSION" Secure="yes">
<DirectorySearchRef Id="System32" Parent="WindowsDirectory"
Path="System32">
<FileSearch Id="pwrshplugin" Name="pwrshplugin.dll"
MinVersion="6.3.9600.16383"/>
</DirectorySearchRef>
</Property>
--
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=50026
Bug ID: 50026
Summary: Powershell Core errors (in win10 mode) with:
Attempting to perform the Start operation on the
'FileSystem' provider failed. Unable to find an entry
point named
'RtlQueryProcessPlaceholderCompatibilityMode' in DLL
'ntd ll.dll'.
Product: Wine
Version: 5.19
Hardware: x86-64
URL: https://github.com/PowerShell/PowerShell/releases/down
load/v7.0.3/PowerShell-7.0.3-win-x64.msi
OS: Linux
Status: NEW
Keywords: download, patch
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Regression SHA1: download
Distribution: Debian
Created attachment 68458
--> https://bugs.winehq.org/attachment.cgi?id=68458
patch with stub
This happens on every command if win10 version is set, i.e.
wine pwsh.exe -c Write-Host "Hello"
Attempting to perform the Start operation on the 'FileSystem' provider failed.
Unable to find an entry point named
'RtlQueryProcessPlaceholderCompatibilityMode' in DLL 'ntdll.dll'.
Though it continues happily further and the command(s) work, this actually
prevents Waves Central from starting in win10 mode
I`ll send attached patch (that fixes this) later.
Relevant code from Powershell Core:
#if !UNIX
// The placeholder mode management APIs
Rtl(Set|Query)(Process|Thread)PlaceholderCompatibilityMode
// are only supported starting with Windows 10 version 1803 (build
17134)
Version minBuildForPlaceHolderAPIs = new Version(10, 0, 17134, 0);
if (Environment.OSVersion.Version >= minBuildForPlaceHolderAPIs)
{
// let's be safe, don't change the PlaceHolderCompatibilityMode
if the current one is not what we expect
if (NativeMethods.PHCM_DISGUISE_PLACEHOLDER ==
NativeMethods.RtlQueryProcessPlaceholderCompatibilityMode())
{
NativeMethods.RtlSetProcessPlaceholderCompatibilityMode(NativeMethods.PHCM_EXPOSE_PLACEHOLDERS);
}
}
#endif
--
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=6575
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, Installer
Hardware|Other |x86
CC| |focht(a)gmx.net
URL|http://www.ideawins.com/ind |https://web.archive.org/web
|ex.html |/20120713143530/http://down
| |load.microsoft.com/download
| |/1/8/D/18DB9BE2-894C-4B77-8
| |FAE-3440A1B326FD/MOA7024Exp
| |ress.exe
Component|-unknown |mountmgr.sys
--
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=8136
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |focht(a)gmx.net
Version|unspecified |0.9.35.
OS|other |Linux
Hardware|Other |x86
Component|-unknown |mountmgr.sys
URL|http://www.microsoft.com/do |https://web.archive.org/web
|wnloads/details.aspx?family |/20061128062328/http://down
|id=24B7D141-6CDF-4FC4-A91B- |load.microsoft.com/download
|6F18FE6921D4 |/e/2/e/e2e92e52-210b-4774-8
| |cd9-3a7a0130141d/msxml4-KB9
| |27978-enu.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=41911
Bug ID: 41911
Summary: Studio One 3 fails to launch because of missing
FindNLSStringEx implementation
Product: Wine
Version: 1.9.24
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: meerkatanonymous(a)gmail.com
Distribution: ---
Studio One 3 fails to launch because of this error:
wine: Call from 0x7bc6159c to unimplemented function
KERNEL32.dll.FindNLSStringEx, aborting
--
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=21511
Summary: wsmanhttpconfig.exe tool from Windows Management
Framework Core (PowerShell 2.0) needs
msvcrt.dll._scwprintf
Product: Wine
Version: 1.1.37
Platform: x86
URL: http://www.microsoft.com/downloads/details.aspx?Family
Id=60cb5b6c-6532-45e0-ab0f-a94ae9ababf5&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
the Windows Management Framework Core (PowerShell 2.0) installer runs
wsmanhttpconfig.exe (Web Services for Management) tool to register services
which fails.
.NET 2.0 SP1 is needed prerequisite
--- snip ---
...
0022:trace:process:CreateProcessW app (null) cmdline
L"C:\\windows\\system32\\wsmanhttpconfig.exe install"
...
0022:trace:process:CreateProcessW started process pid 0047 tid 000d
...
000d:fixme:httpapi:HttpInitialize ({1,0}, 0x2, (nil)): stub!
000d:trace:seh:raise_exception code=80000100 flags=1 addr=0x7bc4ac0a
ip=7bc4ac0a tid=000d
000d:trace:seh:raise_exception info[0]=010305d6
000d:trace:seh:raise_exception info[1]=01030db8
wine: Call from 0x7bc4ac0a to unimplemented function msvcrt.dll._scwprintf,
aborting
--- snip ---
Implementing _scwprintf (using MSVCRT_vsnwprintf) lets the tool successfully
finish.
Regards
--
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=21512
Summary: Windows PowerShell 1.x/2.x needs
HKEY_CURRENT_USER\Environment registry key present
Product: Wine
Version: 1.1.37
Platform: x86
URL: http://www.microsoft.com/downloads/details.aspx?Family
Id=60cb5b6c-6532-45e0-ab0f-a94ae9ababf5&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
prerequisite: .NET 2.0 SP1 + Windows Management Framework Core (contains
PowerShell 2.0)
The shell must be started with wineconsole otherwise it refuses to work at all
(GetConsoleScreenBufferInfo).
--- snip ---
$ pwd
/home/focht/.wine/drive_c/windows/system32/WindowsPowerShell/v1.0
$ wineconsole PowerShell.exe
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
fixme:sync:CreateMemoryResourceNotification (0) stub
fixme:advapi:RegisterEventSourceW (L".",L"PowerShell"): stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0001,0x00000067,(nil),0x0002,0x00000000,0x9e3d08,0x9e3bb0):
stub
err:eventlog:ReportEventW L"Object reference not set to an instance of an
object."
err:eventlog:ReportEventW
L"\tExceptionClass=NullReferenceException\n\tErrorCategory=\n\tErrorId=\n\tErrorMessage=Object
reference not set to an instance of an
object.\n\n\tSeverity=Error\n\n\tSequenceNumber=\n\n\tHostName=ConsoleHost\n\tHostVersion=2.0\n\tHostId=6bba2119-20f0-4b91-b68d-db6df8c2a470\n\tEngineVersion=2.0\n\tRuns"...
--- snip ---
The relay log shows that the app queries the "PSMODULEPATH" environment
variable from different locations.
process -> GetEnvironmentVariable()
machine -> registry,
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment
user -> registry, HKEY_CURRENT_USER\Environment
The latter one isn't present, hence it fails.
--- snip ---
...
0032:Call advapi32.RegOpenKeyExW(80000001,030d24ac
L"Environment",00000000,00020019,0033e484) ret=00dcac27
0032:Call ntdll.RtlInitUnicodeString(0033e3b0,030d24ac L"Environment")
ret=6832a7ee
0032:Ret ntdll.RtlInitUnicodeString() retval=0033e3b0 ret=6832a7ee
0032:Call ntdll.NtOpenKey(0033e484,00020019,0033e3b8) ret=6832a80a
0032:Ret ntdll.NtOpenKey() retval=c0000034 ret=6832a80a
0032:Call ntdll.RtlNtStatusToDosError(c0000034) ret=6832a815
0032:Ret ntdll.RtlNtStatusToDosError() retval=00000002 ret=6832a815
0032:Ret advapi32.RegOpenKeyExW() retval=00000002 ret=00dcac27
...
0032:trace:seh:raise_exception code=c0000005 flags=0 addr=0x33b36ca ip=033b36ca
tid=0032
...
--- snip ---
Creating "HKEY_CURRENT_USER\Environment" key lets the shell successfully
proceed.
Add to wine.inf.in
Regards
--
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=6803
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|-unknown |mountmgr.sys
OS|other |Linux
URL| |https://web.archive.org/web
| |/20140910203549if_/http://d
| |ownload.microsoft.com/downl
| |oad/7/3/4/7345bb7d-0b07-40e
| |8-9480-5b8c55b9c8b7/Windows
| |XP-KB926139-v2-x86-ENU.exe
Keywords| |download, Installer
Hardware|Other |x86
CC| |focht(a)gmx.net
--
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=6438
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |focht(a)gmx.net
Component|kernel32 |mountmgr.sys
Hardware|Other |x86
OS|other |Linux
URL|http://www.softpedia.com/pr |https://web.archive.org/web
|ogDownload/Windows-Media-Fo |/20070225131039/http://down
|rmat-Runtime-11-Download-40 |load.microsoft.com/download
|238.html |/0/9/5/0953e553-3bb6-44b1-8
| |973-106f1b7e5049/wmp11-wind
| |owsxp-x86-enu.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=6758
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, Installer
URL| |https://web.archive.org/web
| |/20061105050627/http://down
| |load.microsoft.com/download
| |/3/8/8/38889dc1-848c-4bf2-8
| |335-86c573ad86d9/IE7-Window
| |sXP-x86-enu.exe
Component|msi |mountmgr.sys
CC| |focht(a)gmx.net
--
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=21947
Summary: IE7 for XP installer crashes in setupapi
Product: Wine
Version: 1.1.40
Platform: x86
URL: http://www.microsoft.com/downloads/details.aspx?Family
ID=9AE91EBE-3385-447C-8A30-081805B2F90B&displaylang=en
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bunglehead(a)gmail.com
Created an attachment (id=26644)
--> (http://bugs.winehq.org/attachment.cgi?id=26644)
installation log
Even if I don't choose update option it sometimes crashes with attached output.
>From time to time it could succeed but it's not very stable, so it's
reproducible I hope.
--
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=13504
Summary: Internet Explorer 7 installation fails
Product: Wine
Version: 1.0-rc2
Platform: PC-x86-64
URL: http://www.microsoft.com/downloads/details.aspx?FamilyId
=9AE91EBE-3385-447C-8A30-081805B2F90B&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: skylerparr(a)gmail.com
Created an attachment (id=13424)
--> (http://bugs.winehq.org/attachment.cgi?id=13424)
wine console output
Installer fails immediately after executing installer.
--
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=9929
Summary: Unimplemented function call in Internet Explorer 7
installer
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=8428)
--> (http://bugs.winehq.org/attachment.cgi?id=8428)
Wine output
After using winetricks volnum as per Bug #5351, I started the IE7 installer
binary for Windows XP SP2. After extraction, the installer page faults with
"Call from 0x7b843f50 to unimplemented function wintrust.dll.GenericChainFi
nalProv, aborting" and another message for wintrust.dll.HTTPSCertificateTrust.
I tried to use a native wintrust.dll and also tried changing Windows version to
Windows XP, with same results.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=5351
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Hardware|Other |x86
URL|http://appdb.winehq.org/app |https://web.archive.org/web
|view.php?appId=1452 |/20060615034802/http://down
| |load.microsoft.com/download
| |/1/4/7/147ded26-931c-4daf-9
| |095-ec7baf996f46/windowsins
| |taller-kb893803-v2-x86.exe
OS|other |Linux
Fixed by SHA1| |b4b49a7d75424a272f30c8b8e76
| |b77df02167c6c
CC| |focht(a)gmx.net
Component|kernel32 |mountmgr.sys
--
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=11936
Summary: window to small in the vc2008 redist installer
Product: Wine
Version: 0.9.57.
Platform: PC
URL: http://download.microsoft.com/download/1/1/1/1116b75a-
9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Created an attachment (id=11238)
--> (http://bugs.winehq.org/attachment.cgi?id=11238)
installer-window in wine
The text of the buttons in the installer of the vc2008 runtime libraries
are not readable.
The location of the Buttons is the same as in w2k,
but in wine, the heigh of the window is to small.
(you need first: sh winetricks volnum)
--
By by ... Detlef
--
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=14228
Summary: Strip off double quotes from path before trying to load
COM servers (Microsoft Device Emulator 3.0/Device
Emulator Manager)
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=a6f6adaf-12e3-4b2f-a394-356e2c2fb114&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after getting past:
http://bugs.winehq.org/show_bug.cgi?id=5351 (winetricks volnum)
and the minor nuisance
http://bugs.winehq.org/show_bug.cgi?id=11936 (installer window size too small)
it gets installed.
When trying to run Device Emulator Manager it fails to load the COM server.
--- quote ---
wine ./dvcemumanager.exe
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
err:ole:CoGetClassObject class {74ad2302-a606-428e-b40f-f04b8964adb6} not
registered
err:ole:CoGetClassObject no class object {74ad2302-a606-428e-b40f-f04b8964adb6}
could be created for context 0x1
fixme:advapi:RegisterTraceGuidsW 0x406377 0x432ac0 0x4033e0 1 0x32ddf0 (null)
(null) 0x432ac8
err:ole:COMPOBJ_DllList_Add couldn't load in-process dll L"\"C:\\Program
Files\\Microsoft Device Emulator\\1.0\\DeviceEmulatorProxy.dll\""
err:ole:create_server class {063e2de8-aa5b-46e8-8239-b8f7ca43f4c7} not
registered
fixme:ole:CoGetClassObject CLSCTX_REMOTE_SERVER not supported
err:ole:CoGetClassObject no class object {063e2de8-aa5b-46e8-8239-b8f7ca43f4c7}
could be created for context 0x17
--- quote ---
The double quotes around the path *are* part of the key and cause the failure
when trying to load the proxy (LoadLibraryExW with altered search path).
This works in Windows.
Best place to strip off double quotes before passing the path further is
probably COM_RegReadPath() in "dlls/ole32/compobj.c"
Regards
--
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=27405
Summary: WinAudit v2.27 needs netapi32.dll DsGetSiteNameA()
stub
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: netapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
an older version of "WinAudit" crashes due to missing
netapi32.dll.DsGetSiteNameA stub.
--- snip ---
$ wine ./WinAudit.exe
...
wine: Call from 0x7b838b9b to unimplemented function
netapi32.dll.DsGetSiteNameA, aborting
--- snip ---
The netapi32.dll.DsGetSiteNameW() stub is already there.
MSDN: http://msdn.microsoft.com/en-us/library/ms675992.aspx
$ wine --version
wine-1.3.21-159-ge398b93
$ sha1sum WinAudit.exe
e900c860afd9e2a4e370ea55edbff36f2e8eb7dd WinAudit.exe
Regards
--
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=34035
Bug #: 34035
Summary: Internet Explorer 9 install fails
Product: Wine
Version: 1.6-rc4
Platform: x86-64
URL: http://download.microsoft.com/download/0/8/7/08768091-
35BC-48E0-9F7F-B9802A0EE2D6/IE9-WindowsVista-x86-enu.e
xe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 45228
--> http://bugs.winehq.org/attachment.cgi?id=45228
wine-1.6-rc4 console output (Win 7 x64)
Several versions of IE9 (Vista and 7, x86 and x64) all fail at the same point.
After setting winecfg to the relevant Windows mode and starting the installer,
the application logs suggest that I have downloaded the incorrect version and
it attempts to download a neutral .msu.
00:03.894: INFO: This is an English only package, so installation will
continue on this non-English OS.
Proxy logs confirm this.
13/Jul/2013 14:58:59.431 227129 192.168.0.25 TCP_MISS/200 36083388 GET
http://download.microsoft.com/download/C/D/4/CD4B7789-0736-4BD2-9909-EEB344…
- DIRECT/92.123.153.96 application/octet-stream
13/Jul/2013 15:15:37.889 209722 192.168.0.25 TCP_MISS/200 35850875 GET
http://download.microsoft.com/download/C/D/4/CD4B7789-0736-4BD2-9909-EEB344…
- DIRECT/92.123.153.185 application/octet-stream
13/Jul/2013 15:33:10.403 110388 192.168.0.25 TCP_MISS/200 17761352 GET
http://download.microsoft.com/download/C/D/4/CD4B7789-0736-4BD2-9909-EEB344…
- DIRECT/92.123.153.96 application/octet-stream
13/Jul/2013 15:35:59.512 113504 192.168.0.25 TCP_MISS/200 17869062 GET
http://download.microsoft.com/download/C/D/4/CD4B7789-0736-4BD2-9909-EEB344…
- DIRECT/92.123.153.96 application/octet-stream
Once downloaded the installer immediately fails with an unspecific "The
installer did not complete" message.
Not sure if this is related to 26575 but if it is then there is the question as
to why the installer thinks I have downloaded the wrong version.
$ env | grep en
LANG=en_GB.UTF-8
LANGUAGE=en_GB:en
$ sha1sum /mnt/wine/IE9-Windows*
5ace268e2812793e2232648f62cdf4be17b2b4dd /mnt/wine/IE9-Windows7-x64-enu.exe
fb2b17cf1d22f3e2b2ad339c5bd78f8fab406d03 /mnt/wine/IE9-Windows7-x86-enu.exe
ac89f940c1bd5f340c74fa4536771df36bddb138
/mnt/wine/IE9-WindowsVista-x64-enu.exe
d1ecd74ac52214be28c1fcc66f927bb48a0174c8
/mnt/wine/IE9-WindowsVista-x86-enu.exe
The logs also show:
03:36.960: ERROR: Unable to create process 'C:\windows\system32\pkgmgr.exe
/quiet /norestart /ip
/m:C:\windows\TEMP\IE921a3.tmp\IE9-neutral.Downloaded\Windows6.0-KB982861-x64.cab
/s:C:\windows\TEMP\IE921a3.tmp\PackageFiles', errorID = 0x00000002 (2)
for Vista packages and
01:59.326: ERROR: Unable to create process 'C:\windows\system32\dism.exe
/online /add-package
/packagepath:C:\windows\TEMP\IE9469f.tmp\IE9-neutral.Downloaded\IE9-Windows6.1-KB982861-x86.cab
/quiet /norestart', errorID = 0x00000002 (2)
for 7 packages.
Neither dism.exe nor pkgmgr.exe exist on my Windows 7 x64 partition. I don't
have a Vista installation.
http://technet.microsoft.com/en-us/magazine/dd490958.aspxhttp://technet.microsoft.com/en-us/library/cc748979%28v=ws.10%29.aspx
Tried the Windows ADM which I read supplies dism.exe but that fails silently,
so that's not currently an option.
http://www.microsoft.com/en-gb/download/confirmation.aspx?id=30652
Stuck.
--
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=32197
Bug #: 32197
Summary: wusa.exe does not install .msu files (because its a
stub)
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sfan5(a)live.de
Classification: Unclassified
Its not possible to install .NET Framework 4.0 because wusa.exe doesn't do
anything.
The Stub should at least install the .dll/.exe Files.
Registry Entries don't get installed that way, but that shouldn't lead to major
problems.
Information on the File Structure of .msu Files:
http://pastie.org/5362158
--
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=44469
Bug ID: 44469
Summary: Windows 10 DISM pkgmgr.exe crashes due to multiple
api-ms-win-crt-private-l1-1-0.dll._o__xxx
stubs/forwards to 'ucrtbase' missing (added with
Windows 10 Version 1507 OS build 10586)
Product: Wine
Version: 3.1
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
continuation of bug 44430
Steps to reproduce
--- snip ---
# clean WINEPREFIX
$ winetricks -q dotnet452 corefonts
$ winetricks -q win10
$ wine adksetup.exe /features OptionId.DeploymentTools
$ pwd
/home/focht/.wine/drive_c/Program Files/Windows Kits/10/Assessment and
Deployment Kit/Deployment Tools/x86/DISM
$ wine ./pkgmgr.exe
...
wine: Call from 0x7bc62a40 to unimplemented function
api-ms-win-crt-private-l1-1-0.dll._o__set_app_type, aborting
wine: Call from 0x7bc62a40 to unimplemented function
api-ms-win-crt-private-l1-1-0.dll._o__seh_filter_exe, aborting
--- snip ---
The unresolved imports:
--- snip ---
$ WINEDEBUG=warn+module wine ./pkgmgr.exe
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__exit imported from L"C:\\Program
Files\\Windows Kits\\10\\Assessment and Deployment Kit\\Deployment
Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x340000
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__get_initial_wide_environment imported
from L"C:\\Program Files\\Windows Kits\\10\\Assessment and Deployment
Kit\\Deployment Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x34000f
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__initialize_wide_environment imported from
L"C:\\Program Files\\Windows Kits\\10\\Assessment and Deployment
Kit\\Deployment Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x34001e
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__seh_filter_exe imported from
L"C:\\Program Files\\Windows Kits\\10\\Assessment and Deployment
Kit\\Deployment Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x34002d
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__set_app_type imported from L"C:\\Program
Files\\Windows Kits\\10\\Assessment and Deployment Kit\\Deployment
Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x34003c
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__set_fmode imported from L"C:\\Program
Files\\Windows Kits\\10\\Assessment and Deployment Kit\\Deployment
Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x34004b
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o_exit imported from L"C:\\Program
Files\\Windows Kits\\10\\Assessment and Deployment Kit\\Deployment
Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x34005a
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__crt_atexit imported from L"C:\\Program
Files\\Windows Kits\\10\\Assessment and Deployment Kit\\Deployment
Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x340069
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__controlfp_s imported from L"C:\\Program
Files\\Windows Kits\\10\\Assessment and Deployment Kit\\Deployment
Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x340078
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__configthreadlocale imported from
L"C:\\Program Files\\Windows Kits\\10\\Assessment and Deployment
Kit\\Deployment Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x340087
01e4:warn:module:import_dll No implementation for
api-ms-win-crt-private-l1-1-0.dll._o__cexit imported from L"C:\\Program
Files\\Windows Kits\\10\\Assessment and Deployment Kit\\Deployment
Tools\\x86\\DISM\\pkgmgr.exe", setting to 0x340096
--- snip ---
api-ms-win-crt-private-l1-1-0.dll._o__cexit
api-ms-win-crt-private-l1-1-0.dll._o__configthreadlocale
api-ms-win-crt-private-l1-1-0.dll._o__controlfp_s
api-ms-win-crt-private-l1-1-0.dll._o__crt_atexit
api-ms-win-crt-private-l1-1-0.dll._o_exit
api-ms-win-crt-private-l1-1-0.dll._o__exit
api-ms-win-crt-private-l1-1-0.dll._o__get_initial_wide_environment
api-ms-win-crt-private-l1-1-0.dll._o__initialize_wide_environment
api-ms-win-crt-private-l1-1-0.dll._o__seh_filter_exe
api-ms-win-crt-private-l1-1-0.dll._o__set_app_type
api-ms-win-crt-private-l1-1-0.dll._o__set_fmode
It's unfortunate that the initial commit which adds
'api-ms-win-crt-private-l1-1-0.dll' doesn't tell which exact Windows version
*and* build and/or Windows SDK version was used to generate the export list.
https://source.winehq.org/git/wine.git/commitdiff/a3e183572a7621635025fed02…
Also no Bugzilla ticket found related to the addition:
https://bugs.winehq.org/buglist.cgi?bug_status=bug_status%3DCLOSED&f1=cf_fi…
After some archaeology I found it mentioned in the mailing list:
https://www.winehq.org/pipermail/wine-patches/2015-August/https://www.winehq.org/pipermail/wine-patches/2015-August/141297.html ("[PATCH
v2 01/22] ucrtbase: Add the new universal CRT DLL.")
...
https://www.winehq.org/pipermail/wine-patches/2015-August/141306.html ("[PATCH
v2 16/22] api-ms-win-crt-private-l1-1-0: Add stub dll.")
--- quote ---
...
Since MSVC 2015/Windows 10, the C runtime has now been split into two
parts, ucrtbase, which is the generic C runtime which is now considered
a system component (in Windows 10, and as an extra installed runtime
component for older Windows version), and vcruntimeX which is specific
to the compiler version.
This uses the msvcrt implementation, just like the earlier msvcr* DLLs.
Functions with names that existed in msvcr120 are hooked up so far.
---
This is updated, based on ucrtbase.dll from Windows 10 RTM.
---
--- quote ---
https://technet.microsoft.com/en-us/en-en/windows/release-info.aspx
Windows 10 RTM -> Version 1507 (RTM) -> my guess it's OS build 10240.16xxx
where the initial dump information was generated from.
https://www.opendll.com/index.php?file-download=api-ms-win-crt-private-l1-1…
-> 10.0.10586.212 shows these imports/exports so it's likely the API set was
updated in Windows 10 Version 1511 (OS build 10586)
That's why I like have tickets (preferably with exact information on origin)
when new (stub) dlls are added to avoid wasting time for this kind of research.
$ sha1sum adksetup.exe
92892e71b083fc46c907b657c300ffc32608d223 adksetup.exe
$ du -sh adksetup.exe
1.7M adksetup.exe
$ wine --version
wine-3.0-180-g85635db0ea
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=40673
Bug ID: 40673
Summary: mscoree.dll not found, after using Dotnet installer
(4.5.2)
Product: Wine
Version: 1.9.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: wavecycle(a)gmail.com
Distribution: ---
NB: I am not using PoL, I am just creating the prefix in the PoL structure as I
want HDT to work with my PoL install of Hearthstone.
I am trying to get a good install of dotnet4.5 working for Hearthstone Deck
Tracker, using the instructions as per:
https://wine-staging.com/news/2015-12-22-release-1.8.html:
$ WINEARCH=win32 WINEPREFIX=~/.PlayOnLinux/wineprefix/HDT winecfg
> Select cancel on the mono install
> Set Win version to 7
> Add new override for mscoree.dll and set to native
Then I run the Dotnet5.2 installer:
$ WINEPREFIX=~/.PlayOnLinux/wineprefix/HDT wine start
'NDP452-KB2901907-x86-x64-AllOS-ENU.exe'
Installation works although I get the windows update missing error.
I then try and run Hearthstone Deck Tracker that has been placed in the program
files directory:
$ WINEPREFIX=~/.PlayOnLinux/wineprefix/HDT wine start 'c:\Program
Files\Hearthstone Deck Tracker\Hearthstone Deck Tracker.exe'
The following error message is output:
err:module:import_dll Library mscoree.dll (which is needed by
L"C:\\windows\\Microsoft.NET\\Framework\\v4.0.30319\\mscorsvw.exe") not found
err:module:LdrInitializeThunk Main exe initialization for
L"C:\\windows\\Microsoft.NET\\Framework\\v4.0.30319\\mscorsvw.exe" failed,
status c0000135
err:service:process_send_command service protocol error - failed to write pipe!
fixme:service:scmdatabase_autostart_services Auto-start service
L"clr_optimization_v4.0.30319_32" failed to start: 1053
fixme:exec:SHELL_execute flags ignored: 0x00000100
err:module:import_dll Library mscoree.dll (which is needed by L"C:\\Program
Files\\Hearthstone Deck Tracker\\Hearthstone Deck Tracker.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Hearthstone Deck Tracker\\Hearthstone Deck Tracker.exe" failed, status
c0000135
I have manually checked and mscoree.dll is in the system32 directory
--
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=26757
Summary: IE8 for Vista refuses to install
Product: Wine
Version: 1.3.17
Platform: x86-64
URL: http://download.microsoft.com/download/F/8/8/F88F09A2-
A315-44C0-848E-48476A9E1577/IE8-WindowsVista-x86-ENU.e
xe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
IE8 for Vista/2008 (32/64) reports "an update is needed..." to install, and
refuses to continue. Presumably it is looking for a DLL that is a newer
version than used in XP/2003.
fixme:clusapi:GetNodeClusterState ((null),0x32eb74) stub!
fixme:advapi:DecryptFileA "c:\\c6bfe201057e127e938a40a0dfb8ea\\" 00000000
fixme:advapi:RegisterTraceGuidsW (0x7ff72344414, 0x7ff723685a0,
{e2821408-c59d-418f-ad3f-aa4e792aeb79}, 1, 0x23efe0, (null), (null),
0x7ff723685a8,)
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:storage:create_storagefile Storage share mode not implemented.
--
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=22928
Summary: IE8 for Vista's "missing updates" message is cut off
Product: Wine
Version: 1.2-rc2
Platform: x86-64
URL: http://download.microsoft.com/download/F/8/8/F88F09A2-
A315-44C0-848E-48476A9E1577/IE8-WindowsVista-x86-ENU.e
xe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: shlwapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=28374)
--> (http://bugs.winehq.org/attachment.cgi?id=28374)
Terminal output
Trying to run the Vista installer for IE8 (with Windows version set to Vista)
yields a message complaining about missing updates, but the message ends
prematurely in the middle of a word. Native shlwapi makes it fully visible.
--
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=37779
Bug ID: 37779
Summary: .Net 4.5 installation faulty on 64 bit
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: t0mcat(a)gmx.de
Distribution: ---
Created attachment 50320
--> https://bugs.winehq.org/attachment.cgi?id=50320
.Net 4.5 Installation Warning
Installation of .Net 4.5 on 64 bit systems completes seemingly successfully.
However, applications cannot use mscoree.dll and maybe other components, too.
This might be related to the warning during installation (see attached
screenshots).
--
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=37781
Bug ID: 37781
Summary: MS .NET Framework 4.5 installer displays warning
'Setup may not run properly, because the Windows
Update Service is not available on this computer'
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
mentioned here: https://bugs.winehq.org/attachment.cgi?id=50320&action=edit
Actually not an issue (StopBlocker vs. WarnBlocker), so this is just for
reference.
Installer log shows:
--- snip ---
Logging all the global blocks
Pre-Installation Warnings:
1. Setup may not run properly, because the Windows Update Service is not
available on this computer.
2. Setup may not run properly, because the Windows Modules Installer Service
is not available on this computer.
--- snip ---
Resource XML:
--- snip ---
<Text ID="#(loc.Blocker_WUServiceMissing)" LocalizedText="Setup may not run
properly, because the Windows Update Service is not available on this
computer." />--- snip ---
<Text ID="#(loc.Blocker_TIServiceMissing)" LocalizedText="Setup may not run
properly, because the Windows Modules Installer Service is not available on
this computer." />
--- snip ---
'ParameterInfo.xml' tells the conditions to be evaluated:
--- snip ---
<WarnBlockers>
...
<BlockIf DisplayText="#(loc.Blocker_WUServiceMissing)"
ID="WUServiceMissing">
<Not>
<Exists>
<Service ShortName="wuauserv" />
</Exists>
</Not>
</BlockIf>
<BlockIf DisplayText="#(loc.Blocker_TIServiceMissing)"
ID="TIServiceMissing">
<Not>
<Exists>
<Service ShortName="TrustedInstaller" />
</Exists>
</Not>
</BlockIf>
...
</WarnBlockers>
--- snip ---
Trace log:
--- snip ---
0026:Call advapi32.OpenServiceW(001f6740,0019ab10 L"wuauserv",00000005)
ret=10032c6c
...
0026:Ret advapi32.OpenServiceW() retval=00000000 ret=10032c6c
0026:Call KERNEL32.GetLastError() ret=10032c7d
0026:Ret KERNEL32.GetLastError() retval=00000424 ret=10032c7d
...
--- snip ---
--- snip ---
...
0026:Call advapi32.OpenServiceW(00ddbb98,0019b068 L"TrustedInstaller",00000005)
ret=10032c6c
...
0026:Ret advapi32.OpenServiceW() retval=00000000 ret=10032c6c
0026:Call KERNEL32.GetLastError() ret=10032c7d
0026:Ret KERNEL32.GetLastError() retval=00000424 ret=10032c7d
--- snip ---
Having those services in Wine is kind of pointless (and potentially harmful)
since Wine can't be serviced Windows updates (binaries) by design.
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=51379
Bug ID: 51379
Summary: Application crash
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: virtualreal(a)gmail.com
Distribution: ---
Created attachment 70235
--> https://bugs.winehq.org/attachment.cgi?id=70235
Crash report
Almost right after the start Zorro S 2.35 ('S' means licence version) crashed
after running a test ('test' button).
FYI:
- Zorro is an environment for automatic trading strategies. It works with
scripts. Mine are in C.
- More info about Zorro can be found on https://zorro-project.com/ and a free
copy can be found on http://opserver.de/down/Zorro_setup.exe, but it requires a
licence if you want to run the features of my script. Maybe the creator 'JCL',
who also reported a bug (https://bugs.winehq.org/show_bug.cgi?id=47221) can
help?
- I've followed all bug reporting checks on https://wiki.winehq.org/Bugs
In case you need any more info, please let me know!
Bas
--
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=51341
Bug ID: 51341
Summary: incomplete Audio USB class compliant driver emulation
/ passthrough
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: usb
Assignee: wine-bugs(a)winehq.org
Reporter: audioprof2002(a)hotmail.com
Distribution: ---
Story goes like this:
Focusrite is currently the most popular manufacturer of home studio sound
interfaces.
has different products, Thunderbolt, USB, FireWire.
but does Not care about Linux,
Focusrite support is Not interested in Linux.
https://support.focusrite.com/hc/en-gb/articles/208530735-Is-my-Focusrite-P…
USB products (Scarlett and Clarett USB) are Class Compliant USB Devices,
and sound in Linux.
Kubuntu 20.10 Groovy Gorilla.
also work in older OSX like Mavericks 10.9.5
alsamixer in terminal, works, but has No options.
https://www.alsa-project.org/wiki/Matrix:Vendor-Focusrite
Focusrite interfaces have lots of settings/configurations/routings for the
built-in DSP, that can only be changed with the Focusrite Software.
Focusrite v3.6.0 software works in PlayOnLinux and Wine 6.10 - 6.11,
works,
BUT.....
Does Not detect the USB interface, and cannot change anything.
Because: Wine requires a USB dummy / USB passthrough / USB emulator /
translator driver
to communicate with the interface.
Wine needs to emulate the Focusrite windows USB driver, HW ID address, name,
version,
and route signals to Linux USB class compliant driver.
for the Focusrite software to see & control the interface.
Focusrite Clarett 8pre usb,
Scarlett 18i20 mk2 mk3
are almost the same,
have different exterior case, analog circuit components, different DAC
but same drivers, same software that detects the different Firmware & serial
numbers.
to add or remove editable / controllable settings.
https://fael-downloads-prod.focusrite.com/customer/prod/s3fs-public/downloa…https://customer.focusrite.com/en/support/downloads?brand=Focusrite&product…https://customer.focusrite.com/en/support/downloads?brand=Focusrite&product…https://customer.focusrite.com/en/support/downloads?brand=Focusrite&product…
Asking ALSA to make a similar control software would require open source code
released from Focusrite,
thats why i think emulating the driver side is more easy, than making the whole
software in Linux without access to source code.
--
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=51377
Bug ID: 51377
Summary: Driver binaries cross-compiled with MinGW (PE) have
'IMAGE_FILE_DLL' image characteristics set
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
while investigating bug 51375 ("SCM erroneously tries to start 64-bit kernel
drivers as 32-bit service due to incorrect handling of 'IMAGE_FILE_DLL' image
characteristics in 'kernel32.dll.GetBinaryTypeW' (Protect DiSC
'acedrv11.sys'))", I've found another discrepancy:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/windows/system32/drivers
$ file *
acedrv11.sys: PE32+ executable (native) x86-64, for MS Windows
etc: directory
fltmgr.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
hidclass.sys: PE32+ executable (DLL) (GUI) x86-64, for MS Windows
http.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
ksecdd.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
mountmgr.sys: PE32+ executable (native) x86-64, for MS Windows
ndis.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
netio.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
nsiproxy.sys: PE32+ executable (native) x86-64, for MS Windows
scsiport.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
tdi.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
usbd.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
winebus.sys: PE32+ executable (native) x86-64, for MS Windows
winehid.sys: PE32+ executable (DLL) (native) x86-64, for MS Windows
wineusb.sys: PE32+ executable (native) x86-64, for MS Windows
--- snip ---
All driver binaries which have been cross-compiled with MinGW (PE) have
'IMAGE_FILE_DLL' image characteristics set which is rather unusual.
--- snip ---
$ winedump http.sys
Contents of http.sys: 49152 bytes
*** This is a Wine builtin DLL ***
File Header
Machine: 8664 (AMD64)
Number of Sections: 6
TimeDateStamp: 60DC03A9 (Wed Jun 30 07:39:53 2021) offset 128
PointerToSymbolTable: 00000000
NumberOfSymbols: 00000000
SizeOfOptionalHeader: 00F0
Characteristics: 2022
EXECUTABLE_IMAGE
LARGE_ADDRESS_AWARE
DLL
...
--- snip ---
Real native and Wine builtin 'fake' drivers are fine.
https://source.winehq.org/git/wine.git/blob/0ec555e58ea9d5b33f4c825e96965ad…
--- snip ---
1 MODULE = nsiproxy.sys
2 IMPORTS = ntoskrnl uuid
3 EXTRADLLFLAGS = -Wl,--subsystem,native
--- snip ---
vs.
https://source.winehq.org/git/wine.git/blob/0ec555e58ea9d5b33f4c825e96965ad…
--- snip ---
1 MODULE = http.sys
2 IMPORTS = ntoskrnl ws2_32
3 EXTRADLLFLAGS = -Wl,--subsystem,native -mno-cygwin
--- snip ---
This doesn't cause a problem in shared WoW64 prefixes under Linux but still
could be addressed.
$ wine --version
wine-6.11-235-g7f1623bc626
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=49165
Bug ID: 49165
Summary: Crash when trying to open Veracrypt
Product: Wine
Version: 5.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikrutrafal54(a)gmail.com
Distribution: ---
Created attachment 67184
--> https://bugs.winehq.org/attachment.cgi?id=67184
Veracrypt log
I'm not sure if this is fixable bug, because Veracrypt probably use a lot of
low level functions.
https://launchpad.net/veracrypt/trunk/1.24-update6/+download/VeraCrypt%20Po…
Steps to reproduce:
- Download
- Extract/Install project
- Run
--
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=8606
Matteo Bruni <matteo.mystral(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |35288d6537652989473dd87258d
| |e5b006d60b589
--
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=39739
Bug ID: 39739
Summary: Cobra 11 - Burning Wheels demo: crashes when starting
the tutorial
Product: Wine
Version: 1.8-rc2
Hardware: x86-64
URL: http://www.4players.de/4players.php/download_info/Down
loads/Download/50183/Alarm_fuer_Cobra_11_Burning_Wheel
s/Deutsche_Demo.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)vr-web.de
CC: hverbeet(a)gmail.com
Regression SHA1: ffc9f535eb7817ea4cd0d0657471e61a9813debd
Distribution: ---
Created attachment 52998
--> https://bugs.winehq.org/attachment.cgi?id=52998
Avoid freeing memory that gets used later by the demo version of "Cobra 11 -
Burning Wheels".
When starting the tutorial the demo crashes.
This seems to be because the accessed memory was freed before:
(See attached patch for the additional trace calls.)
002d:0065:trace:d3d:wined3d_resource_allocate_sysmem Allocated
mem=0x1ac47020-0x1aec1093 size=0x27a073 heap_memory=0x1ac47030
resource=0xd70aa98
002d:002e:trace:d3d:wined3d_resource_free_sysmem Freeing heap_memory=0x1ac47030
resource=0xd70aa98
wine: Unhandled page fault on read access to 0x1ada2920 at address 0x52f7b2
(thread 002e), starting debugger...
The demo was working some years ago. A git bisect leads to this commit:
ffc9f535eb7817ea4cd0d0657471e61a9813debd is the first bad commit
commit ffc9f535eb7817ea4cd0d0657471e61a9813debd
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Fri Jun 14 09:07:12 2013 +0200
wined3d: Handle pre-transformed vertices in the GLSL vertex pipe.
This also avoids a fallback to drawStridedSlow().
Attached patch makes the game (or at least the tutorial) playable by never
freeing the memory above a certain size in buffer_create_buffer_object.
--
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=39738
Bug ID: 39738
Summary: Collecting backtrace of crashing process not possible.
Product: Wine
Version: 1.8-rc2
Hardware: x86-64
URL: http://www.4players.de/4players.php/download_info/Down
loads/Download/50183/Alarm_fuer_Cobra_11_Burning_Wheel
s/Deutsche_Demo.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)vr-web.de
Distribution: Debian
Created attachment 52997
--> https://bugs.winehq.org/attachment.cgi?id=52997
On crash stop all other threads before executing winedbg.
This is about a crash in "Cobra 11 - Burning Wheels" demo.
It seems this demo includes parts of the copy protection of the full game.
(see https://bugs.winehq.org/show_bug.cgi?id=39734 )
Therefore it is not possible to start it with winedbg from begin.
Also one gets the crash dialog, but clicking on details shows just
"Loading detailed information, please wait...".
With the crash dialog disabled it shows:
wine: Unhandled page fault on read access to 0x1adb2920 at address 0x52f7b2
(thread 0009), starting debugger...
Process of pid=0008 has terminated
No process loaded, cannot execute 'echo Modules:'
Cannot get info on module while no process is loaded
No process loaded, cannot execute 'echo Threads:'
(remaining threads)
winedbg: Internal crash at 0x7ed8af1d
Attaching plain gdb makes the process not end itself and the process
gets stopped on the crash. But setting breakpoints is not possible without
"disturbing" the process.
The attached patch assumes that just one thread crashes which
starts then winedbg.
Meanwhile another thread gets notified about the crash and terminates the
process before winedbg gets a chance to attach.
Therefore this patch tries to suspend all other threads before starting
winedbg.
That way the crash dialog could show a backtrace reliably.
--
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=39734
Bug ID: 39734
Summary: ProtectDisc Driver 11: acedrv11.sys crashes
Product: Wine
Version: 1.8-rc2
Hardware: x86-64
URL: http://www.4players.de/4players.php/download_info/Down
loads/Download/50183/Alarm_fuer_Cobra_11_Burning_Wheel
s/Deutsche_Demo.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntoskrnl
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)vr-web.de
Distribution: Debian
Created attachment 52986
--> https://bugs.winehq.org/attachment.cgi?id=52986
backtrace.txt
The demo version of "Cobra 11: Burning Wheels" comes with this copy
protection driver. It gets silently installed by default.
One can extract the protection driver from the setup with:
7z x BurningWheelsDemo.exe "\$PLUGINSDIR/Driver_Setup.exe"
After this driver is installed wine tries to start the copy protection driver
acedrv11.sys on every startup of this wineprefix.
This results in a crash of this driver:
bernhard@rechner:~/wine/drive_c$ wineserver -k; wine wineboot
fixme:ntoskrnl:IoGetDeviceObjectPointer stub: L"\\DosDevices\\CdRom0" 80
0x53e690 0x53e694
fixme:ntoskrnl:KeInitializeEvent stub: 0x11264c 0 0
wine: Unhandled page fault on read access to 0x00000060 at address 0x57923a
(thread 0019), starting debugger...
ProtectionID v0.6.7.0 identifies it as:
#[VersionInfo] Product Name : ProtectDisc x64/x86 Hybrid Driver
#[VersionInfo] Product Version : 9.0.0.0
#[VersionInfo] File Version : 11.0.0.11 built by: WinDDK
#[VersionInfo] Original FileName : acedrv.sys
#[!] ProtectDisc v 9.0.0.0 Driver
--
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=22736
Summary: Aztaka demo does not display any graphics and crashes
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://downloads.aztaka.com/demo/AztakaDemo-1.04.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Large file demo ~900MB
Running the came works after winetricks vcrun2008
It then runs but no graphics are displayed in the game, and some of the menus.
setting the mmdevapi=disable override makes the menus display correctly but
still no graphics.
Judging by
http://appdb.winehq.org/objectManager.php?sClass=version&iId=19469&iTesting…
the lack of graphics is a regression.
Following this running it from the desktop icon launches fine but running from
terminal with &> log.txt appended results in a crash -log attached
--
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=35316
Bug ID: 35316
Summary: Aztaka configuration tool fails to start with Mono
Product: Wine
Version: 1.7.10
Hardware: x86
URL: http://downloads.citeremis.com/AztakaDemo-1.51.exe
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 47103
--> http://bugs.winehq.org/attachment.cgi?id=47103
+mscoree log
It's only the configuration tool (Setup.exe) that needs Mono/.Net, the game
itself runs without it. When you install the demo version, the configuration
tool is started automatically at the end of the installation. You can re-run it
later with Setup.exe in the installed game directory.
The error that comes up when launching the configuration tool:
fixme:msvcm:CrtImplementationDetails_DoDllLanguageSupportValidation stub
fixme:msvcm:CrtImplementationDetails_RegisterModuleUninitializer 0x800da0: stub
Unhandled Exception:
System.NullReferenceException: Object reference not set to an instance of an
object
at <Module>.CMetaData.GetVariable (CMetaData* ,
std.basic_string<char,std::char_traits<char>,std::allocator<char> >*
inVariableName) [0x00000] in <filename unknown>:0
at <Module>.ReadConfigData
(std.basic_string<char,std::char_traits<char>,std::allocator<char> >*
inConfigFileName, TConfigData* lConfigData) [0x00000] in <filename unknown>:0
at Setup.Form1..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Setup.Form1:.ctor ()
at <Module>.main (System.String[] args) [0x00000] in <filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.NullReferenceException: Object
reference not set to an instance of an object
at <Module>.CMetaData.GetVariable (CMetaData* ,
std.basic_string<char,std::char_traits<char>,std::allocator<char> >*
inVariableName) [0x00000] in <filename unknown>:0
at <Module>.ReadConfigData
(std.basic_string<char,std::char_traits<char>,std::allocator<char> >*
inConfigFileName, TConfigData* lConfigData) [0x00000] in <filename unknown>:0
at Setup.Form1..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Setup.Form1:.ctor ()
at <Module>.main (System.String[] args) [0x00000] in <filename unknown>:0
Please note that 'winetricks dotnet20' is _not_ sufficient to start Setup.exe,
because it will complain about
...
Unhandled Exception:
System.IO.FileNotFoundException: Could not load file or assembly
'Microsoft.DirectX.Direct3D, Version=1.0.2902.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35' or one of its dependencies. Exception from
HRESULT: 0x80070002
File name: 'Microsoft.DirectX.Direct3D, Version=1.0.2902.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35'
...
You also need to install the full DX9 package via winetricks (winetricks
directx9) to overcome the problem when .Net 2.0 installed. This, however, a
different bug.
Tested on Fedora 19 x86, Wine 1.7.10 and Wine Mono 4.5.2 installed
--
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=8606
Zebediah Figura <z.figura12(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |z.figura12(a)gmail.com
Status|STAGED |RESOLVED
Resolution|--- |FIXED
--- Comment #42 from Zebediah Figura <z.figura12(a)gmail.com> ---
Should be fixed upstream by
<https://source.winehq.org/git/wine.git/commitdiff/35288d6537652989473dd8725…>.
--
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=51038
Bug ID: 51038
Summary: without virtual desktop, occluding black box in 3D
view. With virtual desktop, missing icons in 2D view
Product: Wine
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: freehand(a)tutanota.com
Distribution: ---
This bug occurs for all versions of wine, including wine-6.6 (Staging). It
does not cause a crash, but causes graphics problems which makes the games
unplayable.
I can't find a winecfg Graphics setting that works for BOTH 2D and 3D view in
two classic open source flight sims.
The source code of these two flight sims, Rowan's Mig Alley and Rowan's Battle
of Britain, is at these links:
https://github.com/gondur/mig_srchttps://github.com/gondur/BOB_Src
In both games play alternates between a 3D flight sim view and a 2D strategy
board game view. For both games, winecfg Graphics decorate windows should be
turned off. Per the title of this bug, 3D view is usable only if virtual
desktop is turned on, while 2D view works only if virtual desktop is turned
off.
A workaround that usually works is to use a dual monitor setup, set 2D and 3D
resolution to 1024x768 in the game, and turn virtual desktop off. With these
settings the 3D occluding black box conveniently moves to the second monitor,
thus both 2D and 3D view are correct.
To reproduce this bug, on a Ubuntu 20.04 partition download and unpack this tar
file
https://www.mediafire.com/file/p6jkteimq89xjsm/esports-for-engineers-v40.ta…
If you want to verify that this file is not corrupted,run
"sha256sum esports-for-engineers-v40.tar.gz".
Then check that the output is is
4b1172ade547dfd0a352d11bc9cae1501693e048c8c4996c2c6a9ee287d67826
esports-for-engineers-v40.tar.gz
cd to esports-for-engineers-v40 and install apt packages as instructed in the
file
ubuntu_20_04_LTS_PackageInstall.sh
To install Rowan's Battle of Britain, run the script
esports-for-engineers-v40/THU/BattleOfBritain/battleOfBritain.sh
To install Rowan's Mig Alley, a similar game with the same bug, run the script
esports-for-engineers-v40/THU/MigAlley/mig.sh
How can I get both the 2D and the 3D view working correctly without using the
dual monitor setup workaround described above? I tried running winecfg on a
second monitor and changing the setting when I switched between 2D and 3D view,
but this had no effect.
--
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=51355
Bug ID: 51355
Summary: cbd oil
Product: Packaging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: lylachapman30(a)gmail.com
CC: dimesio(a)earthlink.net
Distribution: ---
sda
--
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=51353
Bug ID: 51353
Summary: menu in top left corner (NEW, OPEN, SAVE, SAVE AS...
etc) in office 2007 SP3 enterprise maybe all disappear
after moving mouse cursor
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: duza(a)orangemail.sk
Distribution: ---
When open a menu from top left button in excel or word etc. where are NEW,
OPEN, SAVE, SAVE as , etc options so after mouse moving on these options the
menu disappear suddenly. it's not normal behavior. I tested on Office 2007
enterprise SP3 and maybe it happen on other 2007 versions too. I have already
installed a language pack for 2007 office. Please is it possible to simulate
this behavior and investigate situation why it happen ? Is it possible to fix
it?
--
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=35526
Bug ID: 35526
Summary: Cannot remove decimals from version name
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
URL: http://www.youtube.com/watch?v=AOKeTbMJOXY
OS: Linux
Status: NEW
Keywords: download, source
Severity: trivial
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Classification: Unclassified
If a version name has decimals (15.00 for example) then removing the decimals
has no effect. They have to be replaced with something (such as 15.x).
http://www.youtube.com/watch?v=AOKeTbMJOXY
--
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=51343
Bug ID: 51343
Summary: Stranded Deep: Almost everything is white
Product: Wine
Version: 6.11
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: Alexander88207(a)Protonmail.com
Created attachment 70200
--> https://bugs.winehq.org/attachment.cgi?id=70200
StrandedDeep.log
Hello,
when i want to play Stranded Deep
(https://store.steampowered.com/app/313120/stranded_deep) with the DX11
renderer almost everything is white.
I think that 0a88:fixme:d3d_shader:shader_sm4_read_dcl_resource Unhandled data
type 0x6 could be interesting.
Many thanks in advance!
Using FreeBSD 13 & AMD RX 570 with Mesa 20.2.3
--
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=45270
Bug ID: 45270
Summary: wine 3.9 stable and staging will not launch winword
Product: Wine
Version: 3.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: grider.4(a)osu.edu
Distribution: ---
Created attachment 61515
--> https://bugs.winehq.org/attachment.cgi?id=61515
Copy of the windows crash dialog informaiton
I can no longer launch any Office 97 apps. If I boot into Ubuntu 18.04, winwird
runs. I checked and Ubuntu is running wine 3.0. When I poot into Arch, though,
winword will not run. I get a Windows error that my normal.dots is incorrect
and when I click on it, I get a windows error and it crashes.
--
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=51338
Bug ID: 51338
Summary: Run the tests in a non administrator Windows account
Product: Wine-Testbot
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
It would be useful to run the tests in a non-administrator Windows account to
identify tests which require administrator but not necessarily elevated
privileges.
There should probably be one such configuration per major Windows version as
the Windows security policy has changed over time.
--
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=51337
Bug ID: 51337
Summary: Add some locales to Windows 8.1
Product: Wine-Testbot
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
It is possible to add other locales to Windows 8.1. So add a few simple ones to
either w8 or w864 like was done for w7u. This is useful to figure out what is
new Windows behavior.
--
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=51336
Bug ID: 51336
Summary: HvManager does not work
Product: Wine
Version: 6.11
Hardware: x86-64
URL: https://web.archive.org/web/20210401062250/https://hv-manager.org/Download/HvManager.msi
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: the.ideals(a)gmail.com
Distribution: ---
Created attachment 70198
--> https://bugs.winehq.org/attachment.cgi?id=70198
install log
HvManager after successful install the default internet browser will open to
localhost:8117.
winecfg # Windows 10
This application is only supported on Windows 10, Windows Server 2012 R2 or
higher.
Currently, the default linux browser opens to localhost:8117 and potentially no
web instance can start with the current stubs and the internet browser is
unable to connect.
Post https://bugs.winehq.org/show_bug.cgi?id=50902
sha1sum HvManager.msi
1d009829120a62b154d21fe92ffcf8dfe15b6b0c HvManager.msi
du -sh HvManager.msi
6.6M HvManager.msi
--
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=22461
Summary: ms office 2000 fatal error
Product: WineHQ Bugzilla
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)comixrevolution.com
when the installation of ms office 2000 is end, on the video appear a windows
message error
:
CFGWIZ.exe has causede an cricial error
and access don't run
--
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=36750
Bug ID: 36750
Summary: Visual C++ 2005 Trial build fails very early
Product: Wine
Version: 1.1.35
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, testcase
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Blocks: 21259
Created attachment 48801
--> https://bugs.winehq.org/attachment.cgi?id=48801
script to reproduce
Noticed while looking at bug 21259. If you run Dan's script (slightly edited,
I'll attach), it mostly runs fine, but when run the build, it quickly fails
rather than hanging. Terminal output made me suspect msxml3:
err:msxml:doparse Opening and ending tag mismatch: xs:sequence line 8 and
xs:choice
and indeed, winetricks msxml3 gets it further (it then hangs on the first try,
or if I CTRL+C and rerun, it starts to build).
May be a regression, but I haven't tried older versions of wine.
--
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=51330
Bug ID: 51330
Summary: Stationeers: crash after thread creation failure
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dawid.krol(a)gmail.com
Distribution: ---
Created attachment 70195
--> https://bugs.winehq.org/attachment.cgi?id=70195
Stationeers's crash log
Using wine-staging 6.11 nvidia 1060 on Clevo p650rp Fedora 34 64-bit
Steps to reproduce error: Open the game. Create new game or load old one. Click
load game. Debug console appears on the screen with message console Thread
creation failed. After a while game crashes.
The crash seems to be connected with thread creation as I guess game requires
one to run properly. It doesn't appear on Windows and on Linux running Proton.
I couldn't run properly without dxvk as when I tried to run it with default
renderer games hangs when loading save. Game runs on Unity engine and I
couldn't reproduce the problem with other Unity games.
--
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=50896
Bug ID: 50896
Summary: cloned member of PrivateFontCollection is supposed to
survive deletion of the collection
Product: Wine
Version: 6.5
Hardware: x86-64
URL: http://ytomy.sakura.ne.jp/cgi-bin/dl/dl.php?dl=trgssx
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: galtgendo(a)o2.pl
Distribution: ---
First summary is a guesstimate based upon What I'm seeing through
WINEDEBUG="font,gdiplus".
An RPGMakerVX game using TRGSSX.dll has a problem with proper font display.
AFAICT, the library function in use is DrawTextFastA.
Anyway, what I can see in the log is roughly:
- call to GdipNewPrivateFontCollection
- call to GdipPrivateAddFontFile loading 'UmePlus Gothic', followed by a call
to GdipPrivateAddMemoryFont for that font
- a somewhat long dive into gdi32 follows, ending with calls to
GdipGetFontCollectionFamilyCount and GdipGetFontCollectionFamilyList on this
collection
- next is GdipCloneFontFamily call for 'UmePlus Gothic' and a GdipGetFamilyName
call on the *cloned* family
- next is a call to GdipDeletePrivateFontCollection...
and now, we're fucked - this has just deleted the font family, yet the app is
still using the cloned version that from this point is just garbage in wine.
To be exact, what happens later is a GdipCreateFont call on the cloned family.
Game doesn't crash, but the picked font is obviously wrong.
Chances are this is a regression caused by commit
b9307cfa61e9884b01d34c2310ec1ffbb1868728, but it's over a year ago, so I didn't
test that.
What I did test was that changing GdipCloneFontFamily from '*clone = family' to
an obviously wrong 'GdipCreateFontFamilyFromName(family->FamilyName, NULL,
clone)' seems to fix the problem.
--
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=49819
Bug ID: 49819
Summary: EveMon (v 4.0.18.4979): (with dotnet461) crashes on
add character
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: httpapi
Assignee: wine-bugs(a)winehq.org
Reporter: maxwellc(a)gmail.com
Distribution: ---
Created attachment 68155
--> https://bugs.winehq.org/attachment.cgi?id=68155
Report from EVEMon of the problem
Program: EVEMon 4.0.18.4979
(https://appdb.winehq.org/objectManager.php?sClass=application&iId=9346)
Download Link: https://github.com/peterhaneve/evemon/releases/tag/4.0.18
60c649699694060f0175e5830e9381ad9189593a EVEMon-install-4.0.18.exe
Wine Version is both 5.0 Ubuntu and 5.16
Setup:
Following suggestion in
https://appdb.winehq.org/objectManager.php?sClass=version&iId=29658
Prior to upgrade to 5.16 from devel repo,
winetricks dotnet461 corefonts
>From Linux Command line
wine /tmp/EVEMon-install-4.0.18.exe
Click through installation prompts.
Offers to launch on conclusion.
Exited.
WINEDEBUG='fixme+all,err+all' wine "Program Files/EVEMon/EVEMon.exe"
Program runs but attempting to perform File->Add Character crashes the program.
Program brings up report on the problem attached as
"EveMonCrashOwnWords.log"
Second attachment of output with WINEDEBUG="err+all,warn+all,fixme+all"
Unable to reproduce on clean 5.16 prefix since winetricks dotnet461 "is broken
since 5.12"
--
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=50645
Bug ID: 50645
Summary: Age of Mythology Multiplayer on Voobly
Product: Wine
Version: 6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: miltiadesxri(a)gmail.com
Distribution: ---
Created attachment 69359
--> https://bugs.winehq.org/attachment.cgi?id=69359
voobly.exe terminal output
Hello,
I'm trying to play AOM:TT multiplayer on voobly without success. The bug is
similar to the one i posted one year ago. When i enter the in-game lobby I see
that my ip is 0.0.0.0 and no other players are able to connect. I thought that
the patch (https://source.winehq.org/patches/data/110549) was already in the
current wine version, so I don't understand why it doesn't work. I tried
different versions of the game (i.e. original 2cd version, gold edition) and
there isn't any firewall activated. I'll attach a log from the terminal output
(I guess its mostly line 414 that's important).
Thanks in advance,
Miltiades
--
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=51320
Bug ID: 51320
Summary: Can't connect to correct IP address in Voobly when
playing Age of Mythology
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alisamarim7(a)gmail.com
Distribution: ---
I'm having issues hosting and connecting to lobbies in Age of Mythology the
Titans using Voobly. When I try to join the host, the countdown never ends and
when I host myself, the IP address shows as 0.0.0.0.
I'm on Fedora 34 and using Wine 6.10 staging.
Things I've tried:
- enable winetricks directplay (though I get a warning for this saying some
verbs are not working on 64bit version)
- reinstalling wine, game and voobly multiple times.
- trying different versions of wine such as Fedora's winehq-stable and
winehq-staging
Keep in mind that the game works fine using other clients such as GameRanger.
Voobly and the game work fine in Windows 10. I also noticed something
interesting when hosting a lobby on my own (without anyone else joining the
lobby) and running the game through voobly, the IP is shown correctly. Though
if I quit the game and rejoin alone, IP is set to 0.0.0.0 once again.
That's all I have for now. Does anyone know how to fix and/or debug the issue?
--
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=51318
Bug ID: 51318
Summary: MSOffice 2010 - context menu either does not appear or
appears in top-left hand corner
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: poprocks(a)gmail.com
Distribution: ---
I am running Slackware64-current.
I have encountered a bug with MSOffice 2010 (Word and Excel, at least) whereby
right-clicking either does not work at all (typically if no text is
highlighted) or the context menu appears, but in the top-left-hand corner of
the screen as opposed to at the mouse cursor.
I have reproduced this on WINE 6.0.1 and 6.1. I can reproduce on Plasma5 and
fluxbox.
It does not occur on WINE 4.0 or 4.0.4.
Possible regression?
--
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=49197
Bug ID: 49197
Summary: webservices/writer.c fails on armv7l
Product: Wine
Version: 5.8
Hardware: arm
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Debian
Was originally mentioned in bug 43959. reader.c now works in
wine-5.8-230-g3bb824f988, writer still fails:
austin@PrawnOS:~/wine-git/dlls/webservices/tests$ WINEDEBUG=-all make writer.ok
../../../tools/runtest -q -P wine -T ../../.. -M webservices.dll -p
webservices_test.exe.so writer && touch writer.ok
writer.c:371: Test failed: 2272: got 11 expected 10
writer.c:373: Test failed: 2272: got <t>:E-3</t> expected <t>1E-2</t>
writer.c:371: Test failed: 2272: got 12 expected 11
writer.c:373: Test failed: 2272: got <t>-:E-3</t> expected <t>-1E-2</t>
writer.c:373: Test failed: 2272: got <t>1.7976931348623156E+308</t> expected
<t>1.7976931348623157E+308</t>
writer.c:373: Test failed: 2272: got <t>-1.7976931348623156E+308</t> expected
<t>-1.7976931348623157E+308</t>
writer.c:2316: Test failed: got 00000000
writer.c:2332: Test failed: got 00000000
It passes on Windows RT:
webservices:writer start dlls/webservices/tests/writer.c -
0668:writer: 2623 tests executed (0 marked as todo, 0 failures), 0 skipped.
--
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=51189
Bug ID: 51189
Summary: DX11 performance is much lower than DX9 in Heaven on
Windows
Product: Wine
Version: 6.8
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: acyellow(a)gmail.com
1. Compile directx dll for Windows including d3d9.dll, d3d11.dll, dxgi.dll,
wined3d.dll.
2. Install Heaven on Windows OS and Nvidia Graphics card platform.
3. Intall the Wined3d dlls in Windows and make sure Heaven load the wined3d
dlls.
4. Test Heaven benchmark, find that the FPS on Heaven DX11 is much lower than
on Heaven DX9, it is about: FPS on DX11 = 1/3 * FPS on DX9
Use Windows Performance Recorder and Windows Performance Analyzer to debug this
performance issue. We can see many CPU cycle spends on wined3d_cs_mt_finish.
Could you give any advice?
--
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=51308
Bug ID: 51308
Summary: Resident Evil 4 Blackscreen after starting the game,
Game lag issues, MPEG-1 doesn't display before and
after Main Menu and Keyboard slow responding
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zeroredgrave(a)gmail.com
Distribution: ---
Created attachment 70172
--> https://bugs.winehq.org/attachment.cgi?id=70172
Displayed Blackscreen instead of MPEG-1 in the Game
I have a problem on RE4 of the following
- Displayed Blackscreen instead of MPEG-1 should be display on starting the
game, always get skipped in-game and i have to spamming the "ESC" key to skip
the video and play the game because of Blackscreen.
- The graphics of the game is very laggy for integrated intel gpu except in
Status UI, and Load/Save UI and its should not be laggy when i check on
Windows.
- Keyboard responding is kinda slow everytime i pressed like walking, running,
shooting, opening inventory and etc.
The game is fine but only few problem.
--
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=50981
Bug ID: 50981
Summary: Virtual Desktop not respecting certain resolutions
Product: Wine
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lemonzest(a)gmail.com
Distribution: ---
Created attachment 69810
--> https://bugs.winehq.org/attachment.cgi?id=69810
1920x1080
Hi
I have noticed for a few months now that virtual desktop is not scaling
correctly in certain modes.
I have enabled the desktop shell taskbar to check this. Some common resolutions
like 1280x720,1366x768,1600x900,1680x1050,3200x1800 are correct as expected.
But 1920x1080 and 2560x1440 do not show the taskbar as they are cropped and
this is also in games as they crop the bottom rows off, this sometimes means it
crops off item bars.
To show the taskbar in 1920x1080 I have to reduce the vertical to 1050 lines
and in 2560x1440 I also have to reduce to 1050 lines, seems 1050 is some magic
number??
If I run a game at a 2560x1440 resolution the virtual desktop remains at a
1920x1080'ish size but does not expand to encompass the entire game.
I am running on a 4K display and usually like to have games running in virtual
desktop so I can keep any eye on other things like chat.
--
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=48853
Bug ID: 48853
Summary: IME does not turn off except in character input filed
Product: Wine-staging
Version: 5.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: a1_canon(a)yahoo.co.jp
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
OS: Fedora31
wine: 5.3
package: wine-5.3-1.fc31.x86_64
software: Final Fantasy XIV V5.21
There is a character input filed for chatting on the game screen. It is expeted
that IME will be disabled after character input completed, but will not, I will
not be able to enter key to move my avatar.
--
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=45539
Bug ID: 45539
Summary: "DX11 feature level 10.0 is required to run the
engine"
Product: Wine
Version: 3.0.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: alexterranova81(a)gmail.com
Distribution: ---
When trying to launch a game I get the following error msg:"DX11 feature level
10.0 is required to run the engine"
--
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=51299
Bug ID: 51299
Summary: Multiple NVIDIA installers crash on unimplemented
newdev.dll.DiInstallDevice (GeForce Experience 3.x,
RTX Voice)
Product: Wine
Version: 6.11
Hardware: x86-64
URL: https://web.archive.org/web/20200323180303if_/https://us.download.nvidia.com/GFE/GFEClient/3.14.1.48/GeForce
_Experience_v3.14.1.48.exe
OS: Linux
Status: NEW
Keywords: download, patch
Severity: normal
Priority: P2
Component: setupapi
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ArchLinux
Created attachment 70169
--> https://bugs.winehq.org/attachment.cgi?id=70169
patch
Continuation of bug 40430. I detailed everything in
<https://bugs.winehq.org/show_bug.cgi?id=40430#c12>
To reproduce with GeForce Experience one first needs to start the Scheduler
service ('wine net start schedule').
You also need to work around Nvidia GPU check. It doesn't work even though I
have an Nvidia GPU. Extract the installer, remove 'CheckNvGpu' constraint from
GFExperience/GFExperience.nvi.
$ sha1sum GeForce_Experience_v3.14.1.48.exe
67f7326ce6d328b0f5384bcb8a7a6eb7cde6efc5 GeForce_Experience_v3.14.1.48.exe
$ du -sh GeForce_Experience_v3.14.1.48.exe
84M GeForce_Experience_v3.14.1.48.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.
http://bugs.winehq.org/show_bug.cgi?id=35976
Bug ID: 35976
Summary: Starcraft 2: Alt tab breaks hotkeys
Product: Wine
Version: 20050930
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bijan55(a)gmail.com
Alt-tabbing breaks hotkeys in Star Craft 2.
This happens with and without virtual desktop.
Bug has been documented on windows, but has since been solved (Cannot reproduce
on windows)
--
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=46886
Bug ID: 46886
Summary: App Crashes
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lorkilutra(a)desoz.com
Distribution: ---
Created attachment 63962
--> https://bugs.winehq.org/attachment.cgi?id=63962
Crash
Crashing
--
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=50568
Bug ID: 50568
Summary: Epic Launcher Manjaro
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: westiekids(a)gmail.com
Distribution: ---
Created attachment 69243
--> https://bugs.winehq.org/attachment.cgi?id=69243
Trace
I'm rather new to using Wine so I don't know if I have entered the correct
categories, sorry.
I had read that Epic Launcher was now working with wine on Linux so I thought
I'd see if I could get it working. I'm not particularly fussed about not having
it but I thought I'd submit the crash logs to see if that was helpful?
I couldn't quite understand from the trace what the error was so if anyone can
figure it out I'd be interested in understanding it.
Using KDE Manjaro Linux
--
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=39456
Bug ID: 39456
Summary: DirectX 9.0c End-User Runtime Web Installer page fault
/ crashes
Product: Wine
Version: 1.7.52
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bob.mt.wya(a)gmail.com
Distribution: ---
Created attachment 52570
--> https://bugs.winehq.org/attachment.cgi?id=52570
backtrace.txt
Download link:
https://www.microsoft.com/en-gb/download/confirmation.aspx?id=35
Exact (hash match) copy of DirectX installer bundled on S.T.A.L.K.E.R.: SOC
Retail DVD
Tested on a 32-bit Wineprefix using wine-1.7.52-305-g45c987d (Git).
Identical behaviour under Wine Staging (Git).
Installer launches OK but crashes during the actual install process. See
attached backtrace, console output and install logs (created by Microsoft
installer).
--
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=34388
Bug #: 34388
Summary: Star Citizen: Certificate authentication failed
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
Star Citizen launcher starts with an error message: "Certificate authentication
failed, please re-install to correct the problem"
+crypt attached.
--
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=51292
Bug ID: 51292
Summary: Telegram app crashes if clicked on hyper text link
inside channels.
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: prasadpatil252(a)gmail.com
Distribution: ---
I am running wine (wine-6.0.1) stable version and updated to the current date
inside Fedora 34 Gnome (Wayland session) x64.
I have installed Telegram app version 2.7.4 using wine, also tried both 32 bit
and 64 bit portable versions. But the Telegram app still crashes in portable
versions too if clicked on the link.
Note that if the same portable exe I run in Windows OS it works fine if clicked
on link. Even a native Telegram app works fine.
Let me know what could be the issue or it should be reported to the telegram
team.
--
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=37111
Bug ID: 37111
Summary: wine fails at setting up resolution for Hearthstone at
startup
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: blue-t(a)web.de
Created attachment 49335
--> https://bugs.winehq.org/attachment.cgi?id=49335
console output with opengl as winedebug option set
When i'm trying to start Hearthstone with the "-force-opengl" command line
argument, a wine window pops up with an error.
"couldn't setup OpenGL for the requested monitor solution.
GLContex: failed to share context 30001: Erfolg
Screen: could not setup GL for resolution (1920x1080 fs=1 hz=0
GLContext: failed to share context 30002: Erfolg
Screen: could not setup GL for resolution (1920x1065 fs=0 hz=60)"
the rest of the text is cut off, since i can't use the error windows scroll bar
.
Neither can i click "ok" to close that window,
i need to kill it with ctrl+shift+escape.
I've attached the console output of wine with WINEDEBUG=OpenGL enabled.
--
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=51164
Bug ID: 51164
Summary: Yamaha AG DSP Controller V1.1.0.0 cannot find device
Product: Wine
Version: 6.9
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeffz(a)jeffz.name
Distribution: ---
This software for a Yamaha AG06 USB mixer cannot find the device under wine.
According to this Twitter thread, wine produces an incorrect MIDI device
string, compared to the one the app expects to find running on Windows.
https://twitter.com/_d0pefish_/status/1393334113269174289https://web.archive.org/web/20210522062336/https://threadreaderapp.com/thre…
> Under Windows, we get a MIDI device named "AG06/AG03".
> But under Linux, it has a different name, "AG06/AG03 - AG06/AG03 MIDI 1".
> OllyDbg reveals all - here's the loop where the program is iterating over all MIDI input/output devices and comparing their names against the string "AG06/AG03".
--
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=47502
Bug ID: 47502
Summary: Wine names MIDI devices not the same as Windows
Product: Wine
Version: 4.12.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winealsa.drv
Assignee: wine-bugs(a)winehq.org
Reporter: demindf(a)gmail.com
Distribution: ---
I'm trying to run Yamaha's DSP controller for AG06 mixer, but it doesn't detect
MIDI device. The reason it can't find it is because it looks for a device named
"AG06/AG03", however Wine transforms the name to "AG06/AG03 - AG06/AG03 MIDI
1".
To make application work I made a quickfix (not for merging, just for my self)
https://github.com/demin-dmitriy/wine/commit/5497db48db29363af332f1f68b2c75…
, and indeed application works smoothly after that.
Yamaha's DSP controller is not the only program that suffers from that. Here's
a reddit post by somebody with exactly the same issue and same solution but
with Rekordbox:
https://www.reddit.com/r/linuxquestions/comments/c0np91/rename_midi_devices/
--
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=45202
Bug ID: 45202
Summary: Stories Path of Destinies - multicolored textures
Product: Wine
Version: 3.8
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 61415
--> https://bugs.winehq.org/attachment.cgi?id=61415
screenshot
Mainly floor textures are multicolored.
--
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=36165
Bug ID: 36165
Summary: msvcrt/string tests fail under valgrind
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
string.c:1570: Test failed: d =
1000000000000000482416141386308708571867933472627945326741491900144172904106310050588962644037102476595408159456210748972770600252972845262058045244417464426905986489749230528825980973749133650163621397243851020732242333839884529407361024.000000
...
string.c:2475: Test failed: d.x = 0.000000e+000, expected 0
string.c:2478: Test failed: d.x = 0.000000e+000, expected 0
wine-1.7.17-129-gb84e112 / valgrind-3.9.0
--
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=51184
Bug ID: 51184
Summary: test_font_metrics() fails in gdi32:font for bitmap
fonts on Windows 10 >= 1709
Product: Wine
Version: 6.8
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
test_font_metrics() fails in gdi32:font for bitmap fonts on Windows 10 >= 1709:
font.c:415: found bitmap font System, height 16
font.c:356: Test failed: 432: expected 2048, got 13
font.c:356: Test failed: height 1: 456: expected 2048, got 13
...
font.c:356: Test failed: height 96: 456: expected 2048, got 13
font.c:356: Test failed: 467: expected 2048, got 13
font.c:356: Test failed: 476: expected 2048, got 13
So something changed and the test should be updated.
See:
https://test.winehq.org/data/patterns.html#gdi32:font
The failing test was introduced in this commit:
commit 6f7457d8adaf67b457154a45deef21d5b5a87c8f
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
AuthorDate: Tue Jun 24 16:13:31 2008 +0900
Commit: Alexandre Julliard <julliard(a)winehq.org>
CommitDate: Tue Jun 24 12:23:03 2008 +0200
gdi32: Add a test for outline text metrics.
--
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=46043
Bug ID: 46043
Summary: Notepad++ x86 Visual C++ Runtime error
Product: Wine
Version: 3.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hildogjr(a)gmail.com
Distribution: ---
Notepad++ x86 cause a "Microsoft Visual C++ Runtime Library Error" when try to
run a plugin.
To reproduce:
1. Install Note++ x86 from https://notepad-plus-plus.org/;
2. Install the 'Plugins Manager' downloading the *UNI.zip package from
https://github.com/bruderstein/nppPluginManager/releases
3. Place the folder/files in the installation program folders `plugins` and
`update`.
4. Open a *.md file
5. Try to run the plugin:
Plugins >> MarkdownViewer++ >> MarkdownViewer++
6. Error and freeze.
--
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=51224
Bug ID: 51224
Summary: Otvdm can't start any Win16 application
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: rpisl(a)seznam.cz
Distribution: ---
I was unsuccessful trying to make AutoSketch 2.1c running with Wine. Then I
found that it works well with Otvdm (https://github.com/otya128/winevdm) on
Windows. Since that is also based on Wine it should be possible to find and
port changes back. Unfortunately the changes are complex and the code is a
mess. Finally I realized that with a simple change it is possible to run Otvdm
in Wine. The problem is that Wine does not allow to load modules with suffix
"16" from the prefix.
--
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=50592
Bug ID: 50592
Summary: ZynAddSubFX 3.0.3 Demo can't load/open/save presets
Product: Wine
Version: 6.1
Hardware: x86-64
URL: http://fundamental-code.com/zyn-fusion/zyn-fusion-wind
ows-64bit-3.0.3-demo.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: and3md(a)gmail.com
Distribution: ---
Created attachment 69270
--> https://bugs.winehq.org/attachment.cgi?id=69270
Wine log
Hello,
ZynAddSubFX 3.0.3 in standalone version and also as a VST2 plugin opened in
LMMS in wine can't find any preset. File browser widget (File-> Load instrument
for eg) opens empty control without the possibility of select any folder.
Everything works fine on Windows 10.
Steps to reproduce:
1. Download
http://fundamental-code.com/zyn-fusion/zyn-fusion-windows-64bit-3.0.3-demo.…
2. Extract folder
3. Run zynaddsubfx.exe
See attached screenshots.
--
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=49459
Bug ID: 49459
Summary: Memu installer fails: wine: Call from 0x7b00f0b7 to
unimplemented function wuaueng.dll.DllRegisterServer,
aborting
Product: Wine
Version: 5.11
Hardware: x86
URL: http://dl.memuplay.com/download/MEmu-Setup-7.2.1-ha340
8877b.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
As the title says ;)
See also https://bugs.winehq.org/show_bug.cgi?id=49458
--
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=45940
Bug ID: 45940
Summary: Missing CLSID e018945b-aa86-4008-9bd4-6777a1e40c11
(CLSID_WICPngDecoder2 ?)
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: hibbsncc1701(a)gmail.com
Distribution: ---
Created attachment 62473
--> https://bugs.winehq.org/attachment.cgi?id=62473
Console log.
Sword Art Online Re: Hollow Fragment tries to display a splash screen during
early startup and crashes when it fails to instance this CLSID.
According to Microsoft, it's a new decoder that was added in Windows 8, and is
the new default for WICPngDecoder.
See:
https://docs.microsoft.com/en-us/windows/desktop/wic/what-s-new-in-wic-for-…
Also found a reference to the CLSID as Microsoft's own docs don't indicate
which CLSID the new decoder was assigned.... See:
https://github.com/CMCHTPC/DelphiDX12/blob/master/Units/DX12.WinCodec.pas
--
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=51273
Bug ID: 51273
Summary: Starcraft 2 64 bit .exe not starting since 25b093f384
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: stefan(a)codeweavers.com
Distribution: ---
The 64 bit version of Starcraft 2 fails to start in current Wine.
It looks like a stack overflow:
0210:err:seh:call_stack_handlers invalid frame 000000000013FC00
(0000000000022000-0000000000120000)
0210:err:seh:NtRaiseException Exception frame is not in stack limits => unable
to dispatch exception.
Later the game shows a rather useless error message.
Bisect result:
25b093f3845a0ae1b2e2fe1c0701e98064f8e8d6 is the first bad commit
commit 25b093f3845a0ae1b2e2fe1c0701e98064f8e8d6
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Jun 11 10:57:26 2021 +0200
ntdll: Switch to the kernel stack for syscalls on x86-64.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
dlls/ntdll/unix/signal_x86_64.c | 266 +++++++++++++---------------------------
tools/winebuild/import.c | 169 +++++++++++--------------
2 files changed, 161 insertions(+), 274 deletions(-)
It looks similar to bug 51262, but that bug was about 32 bit programs. 32 bit
SC2 runs fine as of f5bd0be6a4.
--
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=42928
Bug ID: 42928
Summary: EmuMovies Sync Fails Login
Product: Wine
Version: 2.6
Hardware: x86-64
URL: http://emumovies.com/files/file/321-emumovies-sync/
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ben(a)xnode.org
Distribution: ---
The program installs and starts happily, but immediately fails when trying to
login. The only output in the terminal when this happens is:
====================
fixme:ras:RasEnumConnectionsW (0x2e7cd10,0xcb0d954,0xcb0d958),stub!
fixme:ras:RasEnumConnectionsW RAS support is not implemented! Configure program
to use LAN connection/winsock instead!
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
====================
Program is relatively modern (most recent version is from December 2016) so it
shouldn't be trying to do anything archaic.
Regarding testing, program is free to use but also requires a (free) account to
use (which is where this failure comes in).
--
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=41403
Bug ID: 41403
Summary: Ri-li 2.0.1: No window shown (just title bar)
Product: Wine
Version: 1.9.19
Hardware: x86-64
URL: http://prdownloads.sourceforge.net/ri-li/Ri-li_2.0.1.e
xe?download
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
When trying to run Ri-Li, I don't see any window, just its title bar.
Console output is the following over and over again:
err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_FRAMEBUFFER_OPERATION (0x506)
from glBindTexture @ context.c / 2397.
fixme:d3d:context_check_fbo_status FBO status GL_FRAMEBUFFER_UNDEFINED (0x8219)
err:d3d:context_check_fbo_status FBO 0 is incomplete, driver bug?
$ openssl sha1 Ri-li_2.0.1.exe
SHA1(Ri-li_2.0.1.exe)= ed9a3f423205369e08492c68a21525ba2f3fb776
--
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=41048
Bug ID: 41048
Summary: Roller Coaster Rampage fails to start: 'Failed to init
XACT' - {0aa000aa-f404-11d9-bd7a-0010dc4f8f81}
xactengine2_0.dll
Product: Wine
Version: 1.9.15
Hardware: x86
URL: http://store.steampowered.com/app/209610/
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: xactengine
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 55220
--> https://bugs.winehq.org/attachment.cgi?id=55220
terminal output
Native d3dx9_29.dll is installed.
With built-in xaudio libraries the game shows an error message on start:
'Failed to init XACT' then crashes.
Class ID {0aa000aa-f404-11d9-bd7a-0010dc4f8f81} belongs to xactengine2_0.dll.
[HKEY_CLASSES_ROOT\CLSID\{0aa000aa-f404-11d9-bd7a-0010dc4f8f81}]
@="XACT Engine"
[HKEY_CLASSES_ROOT\CLSID\{0aa000aa-f404-11d9-bd7a-0010dc4f8f81}\InProcServer32]
@="C:\\Windows\\system32\\xactengine2_0.dll"
"ThreadingModel"="Both"
wine-1.9.15-166-g7aadb08
--
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=29184
Bug #: 29184
Summary: Hogs of War: ground is missing somewhere
Product: Wine
Version: 1.3.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ianstroud(a)btinternet.com
CC: kukuninse(a)gmail.com
Classification: Unclassified
+++ This bug was initially created as a clone of Bug #15913 +++
When I run this all the fault as reported on the App database are still
present. The most problematic being the incorrectly drawn landscapes. When
running repeated errors get logged to the console:
fixme:d3d_surface:IWineD3DBaseSurfaceImpl_Blt Filter WINED3DTEXF_LINEAR not
supported in software blit.
The machine I'm running is an AMD Phenon Quad Core running 64-bit Ubuntu 11.04
on Linux 2.6.38-12-generic and Wine 1.3.15. The Graphics card is a Zotac with
NVIDIA GT 430. (I've just upgraded the graphics driver to
NVIDIA-Linux-x86_64-290.10.
I can't believe a game of this vintage is particularly demanding on graphics so
it should run. If I had to guess I'd that either
i) It is trying to use something in the Wine's DirectX implementation that
hasn't been implemented and so the game is spending excessive time drawing in
software.
OR
ii) There is an issue about how this graphics card/driver reports itself to the
game via DirectX and so the game fails to try use the hardware accelerators and
ends up trying to do too much in software.
OR
iii) This is a multiprocessor issue as the game was never written for
multi-core machines. I can almost imagine the drawing process being run on
multiple cores which then fight over access to the hardware resulting in the
display being partially rendered in stripes.
Original report
The game run fine, but some chunks of land aren't drawn texture. Its like a
stripes of drawned/undrawned chunks of land. It making the game very difficult
to play. Game use DirectDraw HAL. I ran on different settings - nothing
difference.
--
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=51231
Bug ID: 51231
Summary: WeChat can't display QR code in login dialog.
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: jactry92(a)gmail.com
Distribution: ---
Created attachment 70099
--> https://bugs.winehq.org/attachment.cgi?id=70099
+winsock,+seh,+tid,+pid log.
Steps to reproduce:
1. Download and install WeChat;
2. cd ~/.wine/drive_c/Program\ Files/Tencent/WeChat
3. wine WeChat.exe
Expected: A QR code is displayed for scanning.
Actually: Just a blank area.
This seems a regression of a70c5172c6bb0e61ad24c202a9bf4e88b8c868b0. Reset to
bd2e5ff9399982ab7d57612a71107055b64097a8 and then the QR code display again.
--
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=42215
Bug ID: 42215
Summary: Pendulumania: Black screen (needs to emulate 8bpp mode
in winex11)
Product: Wine
Version: 2.0-rc5
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Henri's comment in bug 40096:
The application uses GetDeviceCaps(dc, BITSPIXEL); to get the screen depth, and
essentially gets confused when it's not the 8 bpp it previously set. It might
be possible to emulate 8bpp mode in winex11, I'm not sure how hard that would
be.
This hack works around the issue:
https://bugs.winehq.org/attachment.cgi?id=53902&action=diff
I'm not sure, if this older comment is still relevant in wine-2.0-rc5:
https://bugs.winehq.org/show_bug.cgi?id=40096#c10
--
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=24172
Summary: SyncToy doesn't start when using Mono
Product: Wine
Version: 1.3.1
Platform: x86-64
URL: http://www.microsoft.com/downloads/details.aspx?family
id=c26efa36-98e0-4ee9-a7c5-98d0592d8c52
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
SyncToy (2.1 x86) exits silently with no terminal output if 'winetricks mono26'
is used before installing instead of dotnet20. Trying to run the command line
version (SyncToyCmd.exe) gives this error message:
It seems you may have uninstalled the required Microsoft Sync Framework
components for SyncToy. Please re-run SyncToy 2.1 setup from the original setup
location.
Of course, I haven't uninstalled anything in this wineprefix. At a glance, the
Sync Framework appears to be installed (a "Microsoft Sync Framework" folder
exists in C:\Program Files and contains some DLLs).
--
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=40505
Bug ID: 40505
Summary: PDF Eraser Show False File Name
Product: Wine
Version: 1.9.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yousifjkadom(a)yahoo.com
Distribution: ---
PDF Eraser show "false" file name for pdf file.
In my case there is only one pdf file in desktop which is "TEST" (screen shot
no.1).
But PDF Eraser show me 2 files: "TEST.pdf" & TEST.pdf(1)" (screen shot no.2).
When I select "TEST.pdf" it opened correctly.
But when I select "TEST.pdf(1)" I recieve error message as shown in screen shot
no.3
This occuring even if I installing winetricks (mfc42) before installing PDF
Eraser.
--
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.