http://bugs.winehq.org/show_bug.cgi?id=22177
Summary: Standalone version of DivX fails to install
Product: Wine
Version: 1.1.41
Platform: x86
URL: http://download.divx.com/divx/standalone/DivXInstaller
.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=27057)
--> (http://bugs.winehq.org/attachment.cgi?id=27057)
Terminal output on Wine 1.1.41
Steps to reroduce:
1) remove ~/.wine
2) wine DivXInstaller.exe
3) accept licence and press next
4) get Wine error
--
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=49010
Bug ID: 49010
Summary: ilok license manager: doesn't connect to the
activation server as in 4.0.2
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fsciarra62(a)gmail.com
Distribution: ---
Created attachment 66985
--> https://bugs.winehq.org/attachment.cgi?id=66985
Image shown at application startup
Hi,
iLok License Manager application doesn't work in wine 5.0 (reported by wine
--version) in ubuntu studio 20.04 for amd64.
The application is perfectly working in my ubuntu studio 19.10 with wine 4.0.2.
iLok License Manager is a free application and can be downloaded from this
page:
https://www.ilok.com/#!license-manager
Here is the direct link to the zip file:
http://installers.ilok.com/iloklicensemanager/LicenseSupportInstallerWin64.…
At startup, as shown in the attachment, the application complains that it is
not possible to connect to the server. This doesn't allow me to move my
installed license nor to install new software.
The same application starts perfectly in ubuntu studio 19.10. I have double
checked it several times.
This application is crucial for musicians to authorize highly professional VST
plugins. In order to check the behavior with plugins, it is possible to ask for
trial versions of Eventide VST software from their site, eg:
https://www.eventideaudio.com/products/effects/band-delays/h3000-band-delays
There is a button to request a demo version, working for 30 days.
To request the plugin and activate the license you need an account created on
www.ilok.com and then use the License manager to authorize it on the local
computer. To install on another computer, you have to use the License Manager
to deauthorize the local version, or the software is lost.
I'm at your disposal for any information and help.
Best regards,
Fabrizio
--
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=35709
Bug ID: 35709
Summary: PhotoNinja 1.2.3 64bit crashes at startup
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: jpn_almeida(a)hotmail.com
The 64 bit version of PhotoNinja crashes at startup, right after loading and
showing up the thumbnails (the 32bit version loads successfully).
--
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=38484
Bug ID: 38484
Summary: The ZMR game does not open.
Product: Wine
Version: 1.7.41
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 4i20(a)mail.com
Distribution: ---
Created attachment 51325
--> https://bugs.winehq.org/attachment.cgi?id=51325
logDebugger
The ZMR game does not open.
About the game: http://zmr.enmasse.com/
Thanks for any help, stay with God.
--
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=12071
Summary: MSI SQL joins on tables with many rows are extremely
slow
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: truiken(a)gmail.com
ReportedBy: truiken(a)gmail.com
CC: ead1234(a)hotmail.com
With the current implementation of MSI SQL joins, we perform a Cartesian
product on the tables joined together. In the case where there is no WHERE
clause, this is the correct output, but if there is a WHERE clause, we still
perform the Cartesian product and then filter on the WHERE clause. Though it's
uncommon, there are a few installers (Visual Studio, Nero Express 7) that join
tables with thousands of rows. For example, say we have tables A, B, and C
s.t.
colA colB colC
----- ----- -----
1 1 1
2 2 2
... ... ...
1000 1000 1000
and we have the query
SELECT * FROM A, B, C WHERE `colA`=1 AND `colB`=1 AND `colC`=1
then the current implementation will create a new table with those columns
containing 1000*1000*1000=1 billion rows. Then we check each of the 1 billion
rows for any matches. There are several algorithms for optimizing joins:
http://en.wikipedia.org/wiki/Join_(SQL)#Join_algorithms
The solution I'll be working on is the merge join. This solution parses the
WHERE clause, starting with the two tables that the columns of the clause
belong to (colA -> A, colB -> B, etc) and joins those together, making sure to
eliminate rows based on the WHERE clause. Then the next table in the clause is
merged into the previously created table, eliminating rows. This continues
until there are no tables left. One optimization of this solution is to start
with parts of the WHERE clause that compare against literals. For example, the
query:
SELECT * FROM A, B, C WHERE `colA` = `colB` AND `colB` = 1 AND `colC` = 1
We'd start with "`colB` = 1" since the comparison is against a literal. We
perform 1000 comparisons on the rows of table B (count = 1000). The resulting
table is:
colB
----
1
then we do the same for table C (count = 1000), and the merged table is:
colB colC
---- ----
1 1
next we merge this table with table A:
colA colB colC
---- ---- ----
1 1 1
2 1 1
... ... ...
1000 1 1
and we search through this table for the condition `colA` = `colB` (count =
1000). So we've reduced billions of comparisons to 3000.
Unfortunately, the way our SQL engine is implemented, this will not be an easy
task.
--
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=26010
Summary: NI_Multisim won't install
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: business.kid(a)gmail.com
http://www.ni.com/multisim/
I have given this a garbage rating and the page says to file a bug, so here
goes.
You register, and it gives you a downloader. Running the downloader, it slowly
downloads 464mb and writes a file of length 0 bytes :-//. So I used m$, which
is in the house, to download, and tried installing. I have a user set up just
for this, so I can wipe, hack, etc without upsetting anything.
After previous failed attempts I read errors and ran
winetricks gecko corefonts dotnet20sp2 vcrun6sp6 and stuck in dlls as native,
but that didn't help
It seems to want to do these steps
1. Unzip to C:\National Instruments Download - with coaxing it succeeds.
msiexec.exe & setup.exe each consume 49.x% of cpu. msiexec.exe rises to 99% if
keyboard input is wanted. msiexec then took off and grabbed the cpu with no
keyboard input wanted, so I killed it and setup moved on.
2. Next step is to take my name, license number (I used the trial version
option) and setup.exe grabs the cpu until it bombs. It actually works, but I
gather some threads are idle or have crashed, and idle seems to grab full cpu.
It spews msi errors - sampled below
fixme:msi:MsiGetFeatureValidStatesW 1 L"Core.MIFMUI" 0xfce320 stub returning 8
fixme:volume:GetVolumePathNameW (L"C:\\Program Files\\", 0x865818, 19), stub!
fixme:sxs:cache_QueryAssemblyInfo 0x2233470, 0x00000001, L"Microsoft.VC80.CRT,
version=8.0.50727.4053, publicKeyToken=1fc8b3b9a1e18e3b,
processorArchitecture=x86", 0x20fe1d8
fixme:msi:msi_unimplemented_action_stub MsiUnpublishAssemblies -> 10 ignored
L"MsiAssembly" table values
err:msi:ITERATE_Actions Execution halted, action
L"DD_CA_ComregEnterpriseServicesRB_X86.3643236F_FC70_11D3_A536_0090278A1BB8"
returned 1603
fixme:msi:MsiGetMode unimplemented run mode: 0
fixme:advapi:SetNamedSecurityInfoW L"[AAAAAA.LV.NIEF900]\\" 1 4 (nil) (nil)
0x2267efc (nil)
The output onscreen is "Installing .NET 2.0" (already installed) It's step 2 of
6 on the Elvis install, and step 5 of 33 on the full multisim install. After
more msi errors than I considered possible, it craps out executing invalid
instructions on an seh error.
if left running for several hours, it will make C:\National Instruments fill
that with about 500 Megs. It does install a Program\ Filed/blah/blah/Shared
directory with 150 Megs of 8--megs - 1 gig expected.
I have this user here. Tell me what debug trace you'd like and I'll run it.
--
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=4724
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |434a60ba1df0d8a124e9a09802a
| |466d0492fd1d4
CC| |focht(a)gmx.net
Keywords| |download, regression
URL| |https://web.archive.org/web
| |/20060218080132/http://68.1
| |78.193.170:80/setup.exe
Regression SHA1| |eb893bdea3df8ee40c690ca6f17
| |44f90364ac318
--- Comment #9 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
filling some fields and adding stable download link via Internet Archive for
documentation.
https://web.archive.org/web/20070302130644/http://www.deltacad.com/demo.htmlhttps://web.archive.org/web/20060218080132/http://68.178.193.170:80/setup.e…
$ sha1sum setup.exe
c61b7477e8b323ba90dd1530eee4868b3ba9ecaf setup.exe
$ du -sh setup.exe
5.9M setup.exe
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=8471
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
URL|http://www.deltacad.com |https://web.archive.org/web
| |/20060218080132/http://68.1
| |78.193.170:80/setup.exe
Summary|DeltaCad doesn't draw |DeltaCad 6.0 doesn't draw
|broken lines |broken lines
CC| |focht(a)gmx.net
--- Comment #6 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
adding stable download link via Internet Archive for documentation.
https://web.archive.org/web/20070302130644/http://www.deltacad.com/demo.htmlhttps://web.archive.org/web/20060218080132/http://68.178.193.170:80/setup.e…
$ sha1sum setup.exe
c61b7477e8b323ba90dd1530eee4868b3ba9ecaf setup.exe
$ du -sh setup.exe
5.9M setup.exe
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=10314
Summary: Switched On Schoolhouse 2000 fails to start up
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.familychristianacademy.com/SOStest.html
OS/Version: other
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
While looking at bug 10313, I went looking for a
freely downloadable version of Switched-on Schoolhouse.
The only thing I found so far was a free downloadable placement test
for a school which seems to have been
made with Switched On Schoolhouse 2000.
When you run it, it locks up your X session, and you have
to do alt-control-backspace to shut down the X server
to regain control.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25343
Summary: mstsc fails when using rdp 7 client protocol
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rgilland1966(a)gmail.com
mstsc fails when using rdp 7 client protocol
error is critical failure
--
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=15270
Summary: Newest MapSource version (6.14.1) doesn't run anymore
with wine 1.1.4
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sbuehne(a)web.de
Created an attachment (id=16066)
--> (http://bugs.winehq.org/attachment.cgi?id=16066)
wine error during startup of mapsource
I could run successfully mapsource version 6.11 inlcuding all functions with
wine version 1.1.4 on openSuse 11.0
After applying an upgrade to the software mapsource, wine crashes during
program start with the error message:
...
wine: Unhandled page fault on write access to 0x003c1000 at address 0x9863ab
(thread 0009), starting debugger...
Unhandled exception: page fault on write access to 0x003c1000 in 32-bit code
(0x009863ab).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:009863ab ESP:0033e0b8 EBP:0033e0c0 EFLAGS:00010202( - 00 - -RI1)
EAX:003c0000 EBX:011d0d70 ECX:01ffffce EDX:00000000
ESI:011d1d70 EDI:003c1000
..
I have created a trace file for this error with the command:
echo quit | WINEDEBUG=+relay wine MapSource.exe >& filename.out;
and tailed the last 1000 lines to the attached log file, inlcuding the error
message.
--
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=29212
Bug #: 29212
Summary: Pegasus Mail v. 4.62 build 191 generates msg "Invalid
variant type" & "Invalid variant operation"
Product: Wine
Version: 1.3.33
Platform: x86
URL: http://download-us.pmail.com/w32-462.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccarthy(a)volny.cz
Classification: Unclassified
Created attachment 37716
--> http://bugs.winehq.org/attachment.cgi?id=37716
debug log
wine 1.3.33
Pegasus Mail: v4.62 build 191
IERendered: 2.4.5.18 disabled
Upon start up, Pmail generates two messages: Invalid variant type and Invalid
variant operation
--
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=18330
Summary: MapSource won't recognize Garmin Edge 705 via
MassStorage
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Erbureth(a)seznam.cz
Created an attachment (id=20872)
--> (http://bugs.winehq.org/attachment.cgi?id=20872)
Full log from MapSource 6.13.5 in wine 1.1.20 run.
Last few versions of Wine, I have not been able to use MapSource 6.13.5
software with my Garmin Edge705 unit to it's full extent, for MapSource is
unable to recognize the unit and therefore it cannot communicate with. Last
time it worked, I was using Wine 1.0.0, and when I downgraded from 1.1.20 to
1.0.1, it worked again. Wine log is attached. If there are any other tests I
can perform to help diagnose the problem, just let me know.
--
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=42609
Bug ID: 42609
Summary: Rockstar Games Social Club crashes with subprocess.exe
Product: Wine
Version: 2.3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 57554
--> https://bugs.winehq.org/attachment.cgi?id=57554
backtrace
After launching Max Payne 3 Rockstar Games Social Club crashes with
subprocess.exe and after hitting 'Close' button crash repeats.
Also game stuck at Initializing process.
fixme:dxgi:dxgi_swapchain_Present Unimplemented flags 0x1
fixme:dxgi:dxgi_swapchain_GetDesc iface 0x2e3d55a8, desc 0x2ebbe0f8 partial
stub!
fixme:dxgi:dxgi_swapchain_GetDesc Ignoring ScanlineOrdering, Scaling and
SwapEffect.
fixme:system:IsProcessDPIAware stub!
fixme:dxgi:dxgi_swapchain_Present Unimplemented flags 0x1
fixme:dxgi:dxgi_swapchain_Present Unimplemented sync interval 1
wine-2.3-67-g9eecacb
--
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=12527
Summary: radio button groups don't work with up/down arrow keys
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://winmerge.org/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: msclrhd(a)gmail.com
1. Open an application that has a radio button group, e.g.:
* WinMerge (http://winmerge.org/)
* Some installers
I will use WinMerge as the example for the rest of this bug report:
2. Press Ctrl+N to create a new document
3. Enter "A" in the "Untitled left pane"
4. Enter "B" in the "Untitled right pane"
5. Close the application
This will bring up a "Save modified files?" dialog. NOTE: Using tab to navigate
around the dialog sets the focus to the correct items in the correct sequence.
6. Press the left mouse button on one of the "Save changes" radio buttons
7. Press the down arrow key
This should select the "Discard changes" radio button. The button has the
focus, but is not selected. As a workaround, pressing the space key will select
the button.
8. Press the down arrow key
This should select the "Save changes" radio button, cycling the radio button
grouping. This does not work. If you are on the bottom group, it selects the
"Discard All" button. If you are on the top group, no item is selected and
pressing the down arrow key again selects the "Untitled right" edit box.
9. Press the left mouse button on one of the "Discard changes" radio buttons
10. Press the up arrow key
This should select the "Save changes" radio button. The button has the focus,
but is not selected. As a workaround, pressing the space key will select the
button.
11. Press the up arrow key
This should select the "Discard changes" radio button, cycling the radio button
grouping. This does not work. If you are on the bottom group, it selects the
"Untitled left" edit box. If you are on the top group, it selects the "Untitled
right" edit 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.
http://bugs.winehq.org/show_bug.cgi?id=16845
Summary: Radio buttons not being checked on focus
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.chiark.greenend.org.uk/~sgtatham/putty/downlo
ad.html
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: munozferna(a)gmail.com
Current wine behavior is to just assign the focus to the radio button, however,
Windows checks the radio button when it gets focus through the keyboard arrows.
Steps to reproduce:
1. Open putty
2. Click the Raw radio button
3. Press right arrow twice
Actual results
* Port textbox stays at 23
* Rlogin radio button is not checked
Expected results (windows behavior)
* Port textbox changes to 513
* Rlogin radio button is checked
I'm attaching a patch that I believe fixes this, comments about it would be
appreciated.
--
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=11095
Summary: some keyboard shortcuts do not work in the celestia
installer
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
I've seen this problem in some programs, but not others. Here's one problem
where it happens:
In the Celestia installer, on the initial page, it asks you to accept the GPL
license. By default, the radio button has "do not accept" selected.
On Windows, I can press "alt + a" to select the "accept" radio button. On Wine,
the "accept" button gets focus when I press "alt + a", but the radio button
doesn't get selected.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23525
Summary: Daytona USA Evolutions: some text/graphics are black,
should be colored
Product: Wine
Version: 1.2-rc6
Platform: x86
URL: http://sega.jp/pc/daytonae/trial.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=29366)
--> (http://bugs.winehq.org/attachment.cgi?id=29366)
wine screenshot
It's an old Direct 6.1 game...luckily, it's got a free download (only 42 mb).
Run the game, press enter repeatedly, and start the game. You'll see your car,
but the speedometer/time/etc. are all black. I'll attach a windows screenshot
for comparison.
Terminal output is pretty short:
fixme:win:WINNLSEnableIME hUnknown1 (nil) bUnknown2 0: stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f1a8,0x00000000), stub!
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x164150,0x164098): stub
fixme:d3d:swapchain_init The application requested more than one back buffer,
this is not properly supported.
Please configure the application to use double buffering (1 back buffer) if
possible.
fixme:heap:RtlCompactHeap (0x110000, 0x0) stub
err:ole:CoUninitialize Mismatched CoUninitialize
fixme:d3d:IWineD3DDeviceImpl_Release (0x1584e0) Device released with resources
still bound, acceptable but unexpected
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x342ced0 with type
WINED3DRTYPE_SURFACE (0x1).
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x3417c90 with type
WINED3DRTYPE_SURFACE (0x1).
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x342ea78 with type
WINED3DRTYPE_SURFACE (0x1).
fixme:d3d:IWineD3DDeviceImpl_Release Leftover resource 0x38bb6d8 with type
WINED3DRTYPE_SURFACE (0x1).
--
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=51943
Bug ID: 51943
Summary: Diablo 2 1.13 crashes when creating a room in
Battle.net
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: litimetal(a)gmail.com
Distribution: ---
Created attachment 70913
--> https://bugs.winehq.org/attachment.cgi?id=70913
screenshot.png
1. wine Game.exe
2. Log in to battlenet
3. Create a new battlenet ladder character
4. Create a new room
5. Game 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.
http://bugs.winehq.org/show_bug.cgi?id=31348
Bug #: 31348
Summary: Can't select the file from popup
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kenorb(a)gmail.com
Classification: Unclassified
I'm using the software called: EX4-TO-MQ4 Decompiler 4.0.427 (Demo)
Free available from: http://purebeam.biz/#download_decompiler
But it doesn't work, because I can't select the file.
Here are some logs:
I'm starting it:
$ wine ex4_to_mq4_demo.exe
fixme:msg:ChangeWindowMessageFilter 233 00000001
fixme:msg:ChangeWindowMessageFilter 4a 00000001
fixme:msg:ChangeWindowMessageFilter 49 00000001
fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
(last message repeats couple of times with 0 and -1, possible when the
application is focus or not).
Then I'm clicking 'Decompile...' button to select the file.
I've following logs:
fixme:commdlg:IServiceProvider_fnQueryService Interface
{e07010ec-bc17-44c0-97b0-46c7c95b9edc} requested from unknown service
{e07010ec-bc17-44c0-97b0-46c7c95b9edc}
fixme:shell:ViewModeToListStyle ViewMode 0 not implemented
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1026, a003, 0,
0x33e93c)
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1026, a004, 0,
0x33e93c)
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1025, a003, 1,
0x33e93c)
fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x164e20 (2, 1025, a004, 1,
0x33e93c)
fixme:nstc:NSTC2_fnSetControlStyle2 mask & style (0x00000004) contains
unsupported style(s): 0x00000004
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
The file selection popup appeared, so I can select the file.
Once I've clicked on the file, I've following messages:
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 6
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 6
(last message repeats around 40 times more at the same time)
fixme:shell:IShellBrowser_fnOnViewWindowActive stub, 0x164e20 (0x165368)
Selecting the file (some.ex4), I've following messages:
fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 6
(the last message - many of them)
fixme:win:WINNLSEnableIME hwnd 0x10098 enable -1: stub!
fixme:shell:IShellItemArray_fnEnumItems Stub: 0x173c40 (0x33f83c)
After that no files were selected.
Also I can't type manually in 'File' textbox.
The other think which doesn't work, is dropping the file, but I assume it's not
supported in Wine.
I've seen some similar errors in following tickets:
http://bugs.winehq.org/show_bug.cgi?id=27936http://bugs.winehq.org/show_bug.cgi?id=23525http://bugs.winehq.org/show_bug.cgi?id=11095
And those somebody else pastebins contains exact message which I've:
http://pastebin.com/rx9xRPKYhttp://pastebin.com/QW8T25Xh
which is: 'fixme:win:WINNLSEnableIME hwnd 0x10098 enable 0: stub!'
Basically my goals is to try this program, but it simply doesn't work as
expected.
P.S. I've compiled latest version from Git from the sources on Mac, so
eventually I could apply some patches or write some (if I'll have some good
directions) to test it.
Thank you.
--
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=39009
Bug ID: 39009
Summary: "Importance" link on bug report form opens in wrong
place on fields descriptions page
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
The fields description page has two sections for Importance. The first one is
right below the status definitions table; right below it are the definitions
for Priority and Severity (which is what users need to see). The second
Importance section is toward the bottom of the page, and it just describes the
field as "the combination of its Priority and Severity" without the severity
definitions anywhere in sight.
Clicking the Importance link on the bug report form opens the page at the
second Importance section when it should open at the first one (or even better,
at the Severity section, since that's what we really want users to see). The
result is that users don't see the actual definitions for severity even if they
do bother to click the link.
--
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=48944
Bug ID: 48944
Summary: Default to x86_64 as hardware architecture
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
CC: austinenglish(a)gmail.com
Distribution: ---
The year is 2020 and x86_64 has pretty much completely superseded 32-bit x86
processors with many operating systems dropping 32-bit support left and right,
thus Bugzilla should use x86_64 as default value for "Hardware" field for new
bug reports, especially since many overlook this field and forget to change it
(which is an issue too) or assume that `x86` value includes 64-bit variety of
processors as well.
--
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=51904
Bug ID: 51904
Summary: Autocad LT95 cannot install
Product: Wine
Version: 6.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sederb1953(a)gmail.com
Distribution: ---
Created attachment 70855
--> https://bugs.winehq.org/attachment.cgi?id=70855
error report by wine about the install failure
Executing setup.exe a number of windows with an X and Ok appear. This is after
pointing to the folder containing the installation files. An error report
appears after i clicked OK on the error windows (more than 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=47963
Bug ID: 47963
Summary: Error when submitting a new application to the AppDB
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
I assume this is related to the recent upgrade to PHP7.
When trying to submit a new application to the AppDB, it errors out with this
message:
Ooops! Something has gone terribly wrong!
Our monkey train has derailed! Worry not, a webmaster gopher help army has been
dispatched and is on the way.
If this error continues to be a problem, please report it to us on our Forums
error details:
Error Message: Database Error: Incorrect integer value: '' for column
`apidb`.`appMaintainers`.`versionId` at row 1 Comment:
File: query.php:149
The application entry is created, but it is missing the version information and
test results.
https://appdb.winehq.org/objectManager.php?sClass=application&iId=19597 is an
example.
A couple of forum users have reported a similar error when submitting a new
version. https://forum.winehq.org/viewtopic.php?f=11&t=33007
--
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=46264
Bug ID: 46264
Summary: crushing of programm tygemglobal.exe
Product: Wine
Version: 3.0.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: patrik.macek1(a)gmail.com
Distribution: ---
Created attachment 62968
--> https://bugs.winehq.org/attachment.cgi?id=62968
logfile
running program - tygemglobal.exe is crushing. not immediately, but after short
time of running the programm. with previous version of wine this behaivior was
not 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=45817
Bug ID: 45817
Summary: foobar2000 GUI transparency broken ("playlist tab drag
target" has opaque background)
Product: Wine
Version: 3.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jimbo1qaz(a)gmail.com
Distribution: ---
Created attachment 62277
--> https://bugs.winehq.org/attachment.cgi?id=62277
foobar2000 tab-drag icon bug (virtualbox)
In foobar2000, dragging a playlist tab (for example Default tab) creates a
T-shaped icon depicting the new position of the tab.
In Wine 3.15 in Debian Virtualbox (KDE with compositor=XRender), the icon is
rendered with a light-green background #eeffc0 instead of transparency. (hmm,
it's byteswapped c0ffee, is this intentional?) When I move my cursor away from
the tab bar, both the cursor and the background color fade out normally.
On my Kubuntu dual-boot without Virtualbox, I get a massive rectangle of
corrupted memory. Maybe my Intel i5-6200U GPU drivers are at fault, as I get
random corruption in KDE including transparent/flickering titlebars without
Wine running. I mostly worked around them by switching to XRender.
--------------
Additionally when I run foobar2000 with Wine without no audio output, and open
Preferences (Ctrl+P) and click on Playback/Output, "Device" is blank and I get
a popup "Please select a valid output device". The bug is the popup's
background appears to be uninitialized memory.
(Fun fact: The popup remains always on top, even when you switch windows and
move them over foobar2000. xkill and clicking the popup does nothing.)
--
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=44358
Bug ID: 44358
Summary: FaceIt client doesn't allow registration
Product: Wine
Version: 3.0-rc6
Hardware: x86
URL: https://cdn.faceit.com/electron/release/FACEIT-setup-l
atest.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Blocks: 44355
Distribution: ---
To use the program one needs an account, but the client doesn't allow
registration: "Email Addresses from that domain are not permitted."
It works on my Win7 VM, but but on wine-3.0-rc6 and wine-staging-2.21.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33292
Bug #: 33292
Summary: Vietcong: Disc can't be authenticated
Product: Wine
Version: 1.5.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
Starting Vietcong with the original disc will result the most times in the
error message "Unable to authenticate original disc within time limit.".
Clicking on "Retry" will continue the authentication process but the vietcong
process will then close after a few seconds. The only message the terminal is
showing is "fixme:ntdll:server_ioctl_file Unsupported ioctl 2d1400 (device=2d
access=0 func=500 method=0)".
--
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=45235
Bug ID: 45235
Summary: Adobe Digital Editions 2.0.1 not running
Product: Wine
Version: 3.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: peer_1(a)yahoo.de
Distribution: ---
Created attachment 61465
--> https://bugs.winehq.org/attachment.cgi?id=61465
Debug file created by wine
After installing a new prefix, I installed windowscodecs and corefonts. I was
finally able to install dotnetfx35 SP1 but ADE still won't work.
It is installed but crashes with the attached log.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=49287
Bug ID: 49287
Summary: Desperados 3 Demo only shows a black screen with a
styled cursor
Product: Wine
Version: 5.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blue-t(a)web.de
Distribution: ---
Created attachment 67292
--> https://bugs.winehq.org/attachment.cgi?id=67292
DebugOutput
Running the Desperados 3 Demo instead of the start menu, we only see the cursor
on a black screen.
This seems to be due to missing mfplat functions. I suspect there should be a
video showing on the screen instead.
--
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=43306
Bug ID: 43306
Summary: LEGO Harry Potter unable to detect DualShock 4
Product: Wine
Version: 2.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hid
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
Created attachment 58651
--> https://bugs.winehq.org/attachment.cgi?id=58651
LEGO Harry Potter: Years 1-4 with Dualsock 4
I have a Dualshock 4 controller (Model: cuh-zct2e) and this is not detected at
all in Lego Harry Potter: Years 1-4. The game uses dinput8.
My Dualshock 3 is detected as expected. I guess there is a mapping issue.
I've attached a log.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39498
Bug ID: 39498
Summary: LEGO Rock Raiders - Using bundled d3drm.dll causes
freezing
Product: Wine
Version: 1.7.50
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: david.maza.au(a)gmail.com
Distribution: ---
Created attachment 52637
--> https://bugs.winehq.org/attachment.cgi?id=52637
Compressed Trace Log
Hello,
If I use the bundled d3drm.dll version to play Lego Rock Raiders, the game
freezes after the first screen.
The music continues to play in the background but the game is unplayable.
Interestingly, holding down a key on my keyboard stops the freezing. For
example, holding down the Alt+Tab key combination causes the game to continue
rendering items on the screen.
Unfortunately using the native d3drm.dll doesn't work and causes a crash on
startup (bug #39497).
--
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=31072
Bug #: 31072
Summary: Diablo III: Sound is very quiet
Product: Wine
Version: 1.5.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
If some NPC's are talking for example if I'm finding a book with a story I have
troubles to understand them because the voices are very quiet. I have already
set all ingame sound to 100% and have still to need to turn up much my sound
boxes. Only the cinematics have a loud (normal) sound.
--
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=49657
Bug ID: 49657
Summary: SCP: Secret Laboratory no longer works after an update
Product: Wine
Version: 5.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: flgx(a)protonmail.com
Distribution: ---
SCP: Secret Laboratory
(https://store.steampowered.com/app/700330/SCP_Secret_Laboratory) no longer
works after a big update called "scopophobia", which includes an anti-cheat.
The game just does not start and seems to be stuck doing something with
registry.
The game worked even with the update as beta branch testing, but I assume the
anti-cheat wasn't there yet.
It looks like it's doing some virtual machine checks and checks
SystemBiosVersion and VideoBiosVersion, which wine doesn't have as far I know.
It also seems to do something with ControlSet001 which is also not in wine as
far I know.
I also tried creating the registry keys and values manually with no success.
(while wineserver was still running)
This issue might be similiar to the PUBG: Lite one #47701 which also seems to
check SystemBiosVersion.
Would it be possible to add SystemBiosVersion, VideoBiosVersion registry values
to wine?
And about ControlSet001, would it make sense to link it to the
CurrentControlSet in case it is actually required by the game?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39072
Bug ID: 39072
Summary: Olympus Viewer crashes when it tries to process ORF
files
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: samkochkarev(a)gmail.com
Distribution: ---
Created attachment 52056
--> https://bugs.winehq.org/attachment.cgi?id=52056
backtrace
Both issues are related - you can either start Export or just press the
triangle to start raw processing.
--
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=46509
Bug ID: 46509
Summary: WinOmega client editor causes Access violation in
module ntdll.dll
Product: Wine
Version: 4.0-rc7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: development(a)winomega.com
Distribution: ---
Created attachment 63359
--> https://bugs.winehq.org/attachment.cgi?id=63359
access violation error
Starting with c9e98034b37f44d505ba406f94031d02e226a176, an Access violation is
caused when trying to access the client editor in WinOmega.
(the client editor is a window that includes some ComboBox objects, and it
appears that one of them is propagating the exception)
See attachment for the error message.
--
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=46209
Bug ID: 46209
Summary: TB_GETBUTTONINFO does not return toolbar text
Product: Wine
Version: 3.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: nikolaysemenkov(a)gmail.com
Distribution: ---
Hi,
Wine failed to return the toolbar text, even if just successfully add it, then
next attempt to get it in a row also failed.
Code:
TBBUTTON tbb;
tbb.idCommand = 123;
tbb.iBitmap = I_IMAGENONE;
tbb.fsState = TBSTATE_ENABLED;
tbb.fsStyle = BTNS_BUTTON;
tbb.dwData = 0;
tbb.iString = int(SendMessage(hwndToolBar, TB_ADDSTRING, 0,
LPARAM(TEXT("TEXT2TEST"))));
SendMessage(hwndToolBar, TB_ADDBUTTONS, 1, LPARAM(&tbb));
int nItem = 0;
tchar szLabel[LSTR];
TBBUTTONINFO tbbi;
tbbi.cbSize = sizeof(TBBUTTONINFO);
tbbi.dwMask = TBIF_BYINDEX | TBIF_TEXT;
tbbi.pszText = szLabel;
tbbi.cchText = LSTR;
SendMessage(hwndToolBar, TB_GETBUTTONINFO, WPARAM(nItem), LPARAM(&tbbi));
tbbi.pszText is empty on wine, but works on windows.
Nik
--
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=40321
Bug ID: 40321
Summary: Install of Huion H610Pro Drawing Tablet fails ...
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dave_m16(a)hotmail.com
Distribution: ---
Created attachment 53973
--> https://bugs.winehq.org/attachment.cgi?id=53973
the show details on serious error
Serious error --- details attached --- thanks
--
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=37227
Bug ID: 37227
Summary: Button clicks are ignored in the application
Product: Wine
Version: 1.7.25
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dick.kniep(a)lindix.nl
We are using Go-Global for UNIX v2.2.19 to connect to our servers.
(Download from
ftp://ftp.graphon.com/pub/GO-Global-UX/v2.2.19/go_setup_2.2.19.1222.exe)
This used to work pretty good with wine in the past. But with wine 1.7.25, as
soon as a graphical program is started, any mouseclick in the screen is
ignored, rendering the application useless.
You can use one of our servers to verify.
Steps to reproduce:
1. install under wine: works OK
2. choose secure socket as transport
3. connect to demo.cvix.nl
4. login using winetest/winetest as credentials
Then you will get a window with a firefox icon.
You can type in the bar and will get a website. Try a website where a
buttonclick is required and you will notice that this will not work. It simply
ignores the click event.
BTW. There is another problem with the keyboard. We are using a US-intl
keyboard, but it insists in using a Dutch keyboard where the keys are mapped to
different locations.
--
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=51079
Bug ID: 51079
Summary: System.Net.NetworkInformation.NetworkInformationExcept
ion
Product: Wine
Version: 5.0.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: iphlpapi
Assignee: wine-bugs(a)winehq.org
Reporter: motus.lechat(a)laposte.net
Distribution: ---
Created attachment 69942
--> https://bugs.winehq.org/attachment.cgi?id=69942
3 files : 1 to reproduce error + 1 error message + 1 backtrace
I have a game which use iphlapi and I have an error when I try to launch it
with wine. I have extract only small code from game to reproduce the problem.
The exe works fine under windows but not on Ubuntu 20.04 with wine with error :
Description: The process was terminated due to an unhandled exception.
Exception Info: System.Net.NetworkInformation.NetworkInformationException at
System.Net.NetworkInformation.SystemIPGlobalProperties.GetAllTcpConnect"...
wine: Unhandled exception 0xe0434352 in thread 2f at address 7B032F82 (thread
002f), starting debugger...
I join :
- code in C# to reproduce the problem if you need
- error message
- trace
Thank you for your help
--
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=41691
Bug ID: 41691
Summary: I am trying to run The Political Machine 2016 on steam
and I am presented with the "this program has
encounted a serious problem and needs to close"
message.
Product: Wine
Version: 1.9.21
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 99timb(a)gmail.com
Created attachment 56089
--> https://bugs.winehq.org/attachment.cgi?id=56089
The log error report
I am trying to play The Political Machine 2016 on steam with wine and this is
happening. I'm new so I don't know what to do.
--
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=41393
Bug ID: 41393
Summary: Unable to use CTRL-V shortcut to paste in some
applications
Product: Wine
Version: 1.9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michelesr(a)autistici.org
Distribution: ---
This bug is not present in 1.9.18 and older versions of Wine.
How to reproduce: open the application, then try to press CTRL-V key, nothing
happens.
Verified in "World of Warcraft" and "Warcraft III" games.
OS: Arch Linux, Linux 4.7.4-1 x86_64
--
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=36708
Bug ID: 36708
Summary: Crash during attempt to load SecureDownloadManager.exe
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fyejm5(a)gmail.com
Created attachment 48753
--> http://bugs.winehq.org/attachment.cgi?id=48753
Unhandled exception: page fault on read access to 0x00710033 in 32-bit code
Successfully installed a .MSI file for a secure downloader specific to licensed
Windows-related software. When attempting to initiate the .exe for the
downloader and load the .SDX file (URL to location of software), Wine crashed
with the attached dump.
--
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=40449
Bug ID: 40449
Summary: Join.me fails to start
Product: Wine
Version: 1.9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kamijoutouma648(a)gmail.com
Distribution: ---
WINEPREFIX=~/.wine/join.me wine ~/Downloads/join.me.exe
err:ntdll:NtQueryInformationToken Unhandled Token Information class 29!
fixme:msvcrt:__clean_type_info_names_internal (0x1000a888) stub
When trying to launch join.me after installing directx9
--
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=29445
Bug #: 29445
Summary: LearningCenter.exe fail to start with mono28 but works
with native .net
Product: Wine
Version: 1.3.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Download from http://cetd.sysu.edu.cn/class/NPELSPluginSetup.rar
2. unrar NPELSPluginSetup.rar
3. winetricks -q mono210
4. install setup_v1.1.0.103(101217).exe
5. start LearningCenter.exe
$ cd "~/.wine/drive_c/Program Files/SFLEP/NPELS_LearningCenter_5.0"
$ wine LearningCenter.exe
The application could not start at all, but with native .net2.0 it can start.
Will attach full logs.
--
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=16577
Summary: ntdll/loader/actctx: add support of SxS assembly binding
redirects
Product: Wine
Version: 1.1.10
Platform: All
URL: http://nikonusa.com/software/NX/1.3/win/CNX130NSAEN.EXE
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
this is a showcase bug.
I used the app from bug 12414 as example because it highlights some of the
issues and hopefully helps to understand the problem (with my comments).
We need to end this winetricks vcrun2XXX SxS mess/hell, which requires direct
match of SxS assembly dependencies/bindings.
Download: http://nikonusa.com/software/NX/1.3/win/CNX130NSAEN.EXE
$ sha1sum CNX130NSAEN.EXE -> f31b38e3bcca17c8050c207b79315c9be23d582d
Prerequisite: clean WINEPREFIX, winetricks dotnet20
---
The first installer show stopper (which is this bug report out) are actually
two bugs: one in winetricks and one in the installer.
When you did 'sh winetricks dotnet20' step and start the installer, an error
message box will be shown shortly thereafter:
--- snip ---
Microsoft Visual C++ Runtime Library
Program: c:\windows\temp\RarSFX0\cnx.exe
R6034
An application has made an attempt to load the C runtime library incorrectly.
--- snip ---
The problem comes in form of a sub-installer dependency:
WINEDEBUG=+tid,+seh,+loaddll,+process wine ./nikon.exe
--- snip ---
...
0079:trace:process:CreateProcessW app (null) cmdline
L"C:\\windows\\temp\\RarSFX0\\cnx.exe"
...
0079:trace:process:CreateProcessW started process pid 007a tid 007b
...
007b:trace:loaddll:free_modref Unloaded module
L"C:\\windows\\temp\\nshbb9d.tmp\\UserInfo.dll" : native
007b:trace:loaddll:load_native_dll Loaded
L"C:\\windows\\temp\\nshbb9d.tmp\\process.dll" at 0x10000000: native
007b:fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT"
007b:trace:loaddll:load_native_dll Loaded
L"C:\\windows\\temp\\nshbb9d.tmp\\LIBEXPATW.dll" at 0x3d0000: native
007b:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\mpr.dll" at
0x60c50000: builtin
007b:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\wininet.dll" at 0x60c00000: builtin
007b:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\msvcrt.dll"
at 0x60c80000: builtin
007b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\MSVCR80.dll"
at 0x78130000: native
007b:trace:loaddll:load_native_dll Loaded L"C:\\windows\\system32\\MSVCP80.dll"
at 0x7c420000: native
007b:trace:loaddll:load_native_dll Loaded
L"C:\\windows\\temp\\nshbb9d.tmp\\Activation.dll" at 0x3a0000: native
--- snip ---
The culprit is: "fixme:actctx:parse_depend_manifests Could not find dependent
assembly L"Microsoft.VC80.CRT"
If we dump the embedded manifest from PE for the "Activation.dll":
--- snip ---
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
version="8.0.50727.762" processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
version="8.0.50608.0" processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b">
</assemblyIdentity>
--- snip ---
We can see two VC 8.0 runtime versions referenced, the VC 8.0 SP1 and an older
VC 8.0 one.
"8.0.50727.762" -> Visual C++ 2005 SP1 Redistributable Pack 8.0.50727.762
At this stage, only .NET Framwork 2.0 redist got installed as prerequisite in
WINEPREFIX.
Because of winetricks' winver 2k hack (missing junction point workaround, bug
12401), VC 8.0.50727.42 runtimes are placed in both: system32 and SxS repo.
This results in errorneous behaviour in case of SxS assembly resolver failure
(app references 8.x CRT assemblies not found in SxS) - a fallback load from
system32 - which causes the CRT error.
I already explained the differences between 2K and XP in several other bug
reports when it comes to loading of SxS assemblies.
In short: prevent any CRT (and ATL/MFC) 8.x+ runtime from being put into
system32!
Such assemblies are never to be loaded from system32 with winver > 2K!
To fix this, 'winetricks dotnet20' step needs to include the removal of these
assemblies from system32 as cleanup procedure.
A second copy is properly installed into SxS as precaution from M$ guys in the
light of win2k -> winxp update which knows about activation contexts/SxS.
--- snip .wine/drive_c/windows/system32 ---
$ ls -lsa msvc*
472 -rw-rw-r-- 1 focht focht 479232 2005-09-23 08:29 msvcm80.dll
540 -rw-rw-r-- 1 focht focht 548864 2005-09-23 08:29 msvcp80.dll
616 -rw-rw-r-- 1 focht focht 626688 2005-09-23 08:29 msvcr80.dll
..
--- snip .wine/drive_c/windows/system32 ---
The vendor msi installer bug at this stage is that the sub-installer is
executed *before* the VC redist installer which would install all required CRT
dependencies into SxS.
Hence this error is only shown once.
That sub-installer failure seems not critical.
Now one might think: "ok, lets do the usual winetricks vcrun2005 ...
vcrun2005sp1 mess" before install.
If you do this, the error will still remain (assuming you restart with clean
WINEPREFIX).
The reason is the other "old" VC 8.0 CRT version, referenced in dll manifest:
8.0.50608.0
Winetricks dotnet20 installed a VC 8.0.50727.42 CRT version into SxS (after we
removed the ones from system32).
This would ideally work but Wine's loader doesn't support the redirection of
assembly bindings yet.
If you take a look at the policy file from .NET 2.0 installed VC 8 runtime:
"c:\windows\winSxS\policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c24773\":
--- snip 8.0.50727.42.policy ---
<bindingRedirect oldVersion="8.0.41204.256-8.0.50608.0"
newVersion="8.0.50727.42"/>
--- snip 8.0.50727.42.policy ---
The policy rule would be satisfied, because the assembly asks for version
8.0.50608.0 and the current "up-to-date" version 8.0.50727.42 can be used for
that.
After VC 8.0 SP1 install (sh winetricks vcrun2005sp1), another policy file is
added:
--- snip 8.0.50727.762.policy ---
<bindingRedirect oldVersion="8.0.41204.256-8.0.50608.0"
newVersion="8.0.50727.762"/>
<bindingRedirect oldVersion="8.0.50727.42-8.0.50727.762"
newVersion="8.0.50727.762"/>
--- snip 8.0.50727.762.policy ---
This would cover (match) the first assembly binding dependency, 8.0.50727.762
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=44841
Bug ID: 44841
Summary: GTA 5 rendering issue (green screen/textures) on
NVidia 9800GT
Product: Wine
Version: 3.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Distribution: ---
Created attachment 60887
--> https://bugs.winehq.org/attachment.cgi?id=60887
default terminal output (wine-staging 3.4)
The intro video is all black with sound.
The start menu is all green with GTAV logo in corner.
In-game is green/black mix of polygons/surfaces.
Music, sound, GTA V logo in menu and Player connection pop-ups and social club
window are fine. Can hear gunfire when hitting the fire button.
So basically the game runs but the video rendering is broken.
64bit prefix with Wine-staging 3.4
NVidia 9800GT (1GB VRAM) with Debian-provided NVidia 340.102 proprietary
driver.
Happens both in full-screen(1920x1080) and windowed mode(800x600).
Happens in DX10, DX10.1 and DX11 modes (changed in the game settings file).
With wine 2.12, the intro and menu were fine but the in-game was all messed-up
flickering and stretching gray/black polygons with the player being a static
black silhouette.
Game runs fine with NVidia GTX970.
--
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=38551
Bug ID: 38551
Summary: cl.exe hangs but succeeds on relaunch
Product: Wine
Version: 1.7.42
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xantares09(a)hotmail.com
Distribution: ---
Created attachment 51424
--> https://bugs.winehq.org/attachment.cgi?id=51424
build script output
i'm trying to use microsoft compiler into wine and it hangs compiling a simple
hello world
if i hit ctrl+c in the console and relaunch my build script it succeeds (seems
once the wineserver process it started next builds will succeed. if i kill
wineserver it will fail once more.
I'm using latest wine 1.7.42 on archlinux x86_64 and vc2010express+cmake from
winetricks
i use these install/build scripts for you to reproduce the problem:
https://github.com/xantares/msvc-wine
i get these repeated timeout messages later:
err:ntdll:RtlpWaitForCriticalSection, see build.log
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35220
Bug ID: 35220
Summary: Clickr: puzzle table is hidden behind solid color with
built-in d3dx libraries
Product: Wine
Version: 1.7.9
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
Created attachment 46970
--> http://bugs.winehq.org/attachment.cgi?id=46970
terminal output
'Clickr' is a puzzle game, the Steam version comes bundled with native
d3dx9_34.dll.
If I use Wine's built-in d3dx9* dlls the puzzle table is covered by some pink
color.
Either native d3dx9_34 or d3dx9_36 works around the problem and the table is
displayed correctly.
Fedora 19
Nvidia binary drivers 325.15
--
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=33080
Bug #: 33080
Summary: While running DPFMate.exe, Unhandled exception: page
fault on read access to 0x00000004 in 32-bit code
(0x0040ea53).
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jon(a)sprig.gs
Classification: Unclassified
Created attachment 43734
--> http://bugs.winehq.org/attachment.cgi?id=43734
Backtrace
Please see attached backtrace. This is a simple keyring photoframe manager.
Wine is using Ubuntu 12.04, plus the Wine PPA, latest winetricks downloaded
from the SVN (WINETRICKS_VERSION=20120912) to install MFC42U.dll.
After I got similar results to the backtrace, I tried forcing the app to use
the Win2k emulation mode, and then captured this backtrace - probably not the
best idea, but I'm happy to run any other diagnostics.
--
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=31839
Bug #: 31839
Summary: Mouse jumps to the upper left corner of the screen
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
On some games (I noticed this only on Blizzard games) the mouse position is set
on starting/exiting the game to the upper left corner of the screen. Just a few
examples:
- On Diablo 3 this works on starting and exiting the game (independent if
-opengl is used or not).
- On Warcraft 3 (RoC and TFT) this works only on starting the game and if
-opengl is used.
--
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=50611
Bug ID: 50611
Summary: Games For Windows Live - Microsoft installer: error
0x800b0003
Product: Wine
Version: 6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gi85qht0z(a)relay.firefox.com
Distribution: ---
Created attachment 69297
--> https://bugs.winehq.org/attachment.cgi?id=69297
log with wine 6.1-staging
Installer failes with error 0x800b0003
--
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=43816
Bug ID: 43816
Summary: The Witcher 3: white outline on vegetation during rain
at nighttime
Product: Wine
Version: 2.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: shtetldik(a)gmail.com
Distribution: ---
Created attachment 59363
--> https://bugs.winehq.org/attachment.cgi?id=59363
White outline on vegetation during rain at nighttime
When it's raining and it's dark, some vegetation gets a white outline, which is
probably supposed to represent some wet texture. It looks incorrect. See
attached screenshot.
Configuration:
Graphics:
OpenGL renderer string: AMD Radeon (TM) RX 480 Graphics (POLARIS10 / DRM 3.15.0
/ 4.12.0-2-amd64, LLVM 5.0.0)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 17.3.0-devel
(git-4b41361894)
(+Mesa freeze prevention patch).
Wine staging patches applied:
wined3d-buffer_create wined3d-sample_c_lz wined3d-GenerateMips
d3d11-Deferred_Context xaudio2-get_al_format
--
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=40338
Bug ID: 40338
Summary: XenCenter 6.5 doesn't start
Product: Wine
Version: 1.9.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blauerhunger(a)outlook.de
Distribution: Ubuntu
Created attachment 54009
--> https://bugs.winehq.org/attachment.cgi?id=54009
The logfile XenCenter creates in
/home/user/.wine/drive_c/users/user/Application
Data/Citrix/XenCenter/logs/XenCenter.log
When trying to start XenCenter 6.5, it shows an error message "There has been
an unexpected error. Technical details about this error have been saved to the
following file. Please send this to your support representative."
On Windows (at least 7, 8.1 and 10), it works without any problems.
--
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=32760
Bug #: 32760
Summary: Mono not running VB.NET app
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pwthomas95(a)satx.rr.com
Classification: Unclassified
I tried running the VB.Net app on 1.5.19 with exact same results. When run from
the command line it produces a massive, console over flowing error log. I had a
forum thread so I have the log on pastebin: http://pastebin.com/kh9CLcqM
--
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=40339
Bug ID: 40339
Summary: wine does not detect java
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: boblebarbare2(a)gmail.com
Distribution: ---
Created attachment 54013
--> https://bugs.winehq.org/attachment.cgi?id=54013
minecraft
wine does not detect java by minecraft and write launch4j error
--
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=39725
Bug ID: 39725
Summary: Strat-o-matic baseball (v. 2015g)will not open. The
pop up mearly states "the program SOMBB.exe has
encountered a serious problem and needs to close."
Product: Wine
Version: 1.7.53
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jdpwinters(a)gmail.com
Created attachment 52981
--> https://bugs.winehq.org/attachment.cgi?id=52981
Attached is the report "program error details."
SOM baseball is a baseball simulator using previous stats to recreate player
performance. Commerical software, company website :
http://www.strat-o-matic.com; no free version available.
--
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=38605
Bug ID: 38605
Summary: Games stopped working after upgrading from Wine 1.4 to
1.6/1.7
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kbon(a)gmx.com
Distribution: ---
Created attachment 51500
--> https://bugs.winehq.org/attachment.cgi?id=51500
Backtrace log
Hi, I just recently upgraded my install of Linux Mint Debian Edition from
version 1 to v2, which made Wine upgrade from 1.4x to 1.6 (the latest found on
debian jessie repos), and with it several games (Age of Empires 2, Herts of
Iron 2) which did run flawlessly before the upgrade stopped working altogether.
The error I get on the command line is:
wine: Unhandled page fault on read access to 0x00000000 at address 0x7dc3a0f0
(thread 0009), starting debugger...
I tried recreating the wine prefix, running it with a 32-bit prefix, and
upgrading to wine 1.7 following this guide:
http://forums.linuxmint.com/viewtopic.php?f=238&t=193804
Attached is the backtrace of the error.
My OS: LMDE 2 (Debian 8 )
Kernel: 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3~deb8u1 (2015-04-24) x86_64
GNU/Linux
Video / Driver: [AMD/ATI] Trinity [Radeon HD 7480D] using latest propietary
drivers (fglrx-14.501.1003)
--
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=30376
Bug #: 30376
Summary: Baldurs Gate II (GOG.com version) crashes on loading
specific save games
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpranevich(a)gmail.com
Classification: Unclassified
Created attachment 39718
--> http://bugs.winehq.org/attachment.cgi?id=39718
Crash info
Baldurs Gate II (GOG.com version) crashes on loading specific save games from
certain areas of the game, especially Chapter 7. The identical save games work
on Windows install.
--
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=42065
Bug ID: 42065
Summary: WOW 7.1 spams fixme:d3d_draw:draw_primitive_arrays
Start instance (VALUE) not supported.
Product: Wine
Version: 2.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winetest(a)luukku.com
Distribution: ---
The spam comes from here
http://source.winehq.org/git/wine.git/blob/80d2edd5845c09b98cb5b6b7779b4455…
and the function gets different values as shown here as example.
fixme:d3d_draw:draw_primitive_arrays Start instance (23883) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23887) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23889) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23893) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23895) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23899) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23901) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23905) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (23907) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78301) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78305) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78309) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78313) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78317) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78319) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78323) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78325) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78329) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78331) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78335) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (78337) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89136) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89140) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89144) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89148) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89152) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89154) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89158) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89160) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89164) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89166) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89170) not supported.
fixme:d3d_draw:draw_primitive_arrays Start instance (89172) not supported.
It's just too noicy.
--
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=40042
Bug ID: 40042
Summary: Spikit 1.9.4 fails to install
Product: Wine
Version: 1.9.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Distribution: ---
Created attachment 53496
--> https://bugs.winehq.org/attachment.cgi?id=53496
Error window
Steps to reproduce:
1) remove ~/.wine
2) wine SpikitSetup1.9.4.0.exe
Behaviour:
Error window (see attachment)
Expected behaviour:
No error window.
--
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=31933
Bug #: 31933
Summary: GOG.com installer displays the options menu poorly
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
Classification: Unclassified
Created attachment 42059
--> http://bugs.winehq.org/attachment.cgi?id=42059
screenshot
Here's an example with the Heroes of Might and Magic 5 Bundle. The console
displays these lines in loop.
fixme:uniscribe:GPOS_apply_lookup We do not handle SubType 5
fixme:uniscribe:GPOS_apply_PairAdjustment Pair Adjustment Positioning: Format 2
Unhandled
I suspect that all the games from GOG have this issue. Marking the issue to
fonts, as I suspect this has to do with a font that Linux does not have.
--
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=45872
Bug ID: 45872
Summary: Trying to run Destiny 2 in cmd line
Product: Wine
Version: 3.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mfaqiri33(a)gmail.com
Distribution: ---
Created attachment 62377
--> https://bugs.winehq.org/attachment.cgi?id=62377Battle.net launched correctly, Destiny 2 seems to have failed at code 0000014e
I attempted to launch Destiny 2 off the battle.net launcher off of the Lutris
installer for Battle.net. Destiny 2 failed to launch and I received the
backtrace.
--
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=38802
Bug ID: 38802
Summary: error when playing a game
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pdaut01(a)hotmail.com
Distribution: ---
Created attachment 51744
--> https://bugs.winehq.org/attachment.cgi?id=51744
error report from Wine
when I try to play the Pokemon fan game Pokemon Fusion Generation the game
crashes when it asks for my name in that game
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38574
Bug ID: 38574
Summary: Heroes of the Storm 64-bit crashes on launch
Product: Wine
Version: 1.7.42
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adys.wh(a)gmail.com
Distribution: ---
Created attachment 51470
--> https://bugs.winehq.org/attachment.cgi?id=51470
Crash logs
Heroes of the Storm crashes if launching the 64-bit client. Setting it to
32-bit fixes the issue. This has been widely reported outside of Wine.
The game attaches its own debugger so wine's backtraces arent available.
Attached is the game's crash logs including .dmp file.
--
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=44572
Bug ID: 44572
Summary: Amazon Workspaces: Crashing while registering
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: menelaosbgr(a)gmail.com
Distribution: ---
Created attachment 60542
--> https://bugs.winehq.org/attachment.cgi?id=60542
The trace from the crash.
I was missing two DLLs that I copied into the C:/windows and
c:/windows/system32 folders. After the application starts.
But when I click the button to login, I get a crash.
Please see attachment.
--
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=41244
Bug ID: 41244
Summary: App does not open though other software by same dev
does
Product: Wine
Version: 1.9.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: peter(a)peterkempphotography.com
Distribution: ---
Created attachment 55540
--> https://bugs.winehq.org/attachment.cgi?id=55540
Dump file
Though other Anthropics software eg Portrait Pro Studio run fine new software
will not open.
--
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=40543
Bug ID: 40543
Summary: I was trying to run a program and it says that it
can't run it
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: lihezecava(a)leeching.net
Created attachment 54376
--> https://bugs.winehq.org/attachment.cgi?id=54376
I was trying to run a program and it says that it can't run it
Program can't 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=40302
Bug ID: 40302
Summary: I have been using UBUNTU 14.04 desktop and wine source
(1.8.1) .
Product: Wine
Version: 1.8.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: himsstory(a)gmail.com
Distribution: ---
Created attachment 53941
--> https://bugs.winehq.org/attachment.cgi?id=53941
Backtrace when I try to open Amazon workspaces using wine.
I got the following error that flex and bison packages are not found. I
installed those packages. Then libxml packages, libxslt packages were also not
installed. however i was able to install wine .
I extracted the .msi installer using msiexexc /i option with wine.The
installation is successful. The login page opens up. When i enter my
credentials, it shows loading and then i get the error. I have tried doing the
same on 64 bit ubuntu 14.0.4 but still the same result.
--
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=40621
Bug ID: 40621
Summary: Al cerrar el zara radio muestra un error de
incompatibilidad.
Product: Wine
Version: 1.9.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: danielmascaro(a)outlook.com
Distribution: ---
Created attachment 54480
--> https://bugs.winehq.org/attachment.cgi?id=54480
Al cerrar el zara radio muestra un error de incompatibilidad.
Al cerrar el zara radio muestra un error de incompatibilidad.
--
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=29434
Bug #: 29434
Summary: Picasa 3.9 fails to authenticate with Google
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mihai(a)mihaic.ro
Classification: Unclassified
Created attachment 38101
--> http://bugs.winehq.org/attachment.cgi?id=38101
Output from running Picasa 3.9 in a terminal.
Picasa 3.9 fails to authenticate with Google. Picasa 3.8 works with the same
setup (Ubuntu 11.10).
The problem is known to Google:
http://www.google.com/support/forum/p/Picasa/thread?tid=1c3f770cc876aeb9&fi…
"[...] we've switched to using OAuth in Picasa 3.9 and our implementation isn't
supported on WINE."
I'm attaching the output I get when running in a terminal (wine Picasa3.exe).
When I try to connect to Google, the following line is output:
"err:ntdll:RtlpWaitForCriticalSection section 0xe10440 "?" wait timed out in
thread 0033, blocked by 0009, retrying (60 sec)"
--
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=44838
Bug ID: 44838
Summary: Diablo 2 graphics became glitchy starting with Wine
Version 3.2
Product: Wine
Version: 3.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wodencafe(a)gmail.com
Distribution: ---
Starting with Wine 3.2 and on, Diablo 2 is rendering very strangely and badly,
lots of flickering and black squares.
It's hard to describe so I have attached a video comparison with 3.1, which
works fine.
Tested with 3.2, 3.3, and 3.4, and all have the flicker / black squares
problems. 3.1 and prior are fine.
This is with no wine modifications beyond installing Diablo 2 & Lord of
Destruction.
Please see the video for example of problem, and comparison of when it was
working with 3.1
--
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=44125
Bug ID: 44125
Summary: x11drv: Can't allocate handle for display fd x11drv:
Can't store handle for display fd
Product: Wine
Version: 2.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: noel.kuntze+bugs.winehq(a)thermi.consulting
Distribution: ---
The following errors are printed by wine, additionally with the game crashing
or exiting game sessions is happening with wine 2.22 while playing World of
Warships:
x11drv: Can't allocate handle for display fd
x11drv: Can't store handle for display fd
Possibly a regression re 39268
--
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=36896
Bug ID: 36896
Summary: Audiosurf Quest 3D error
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: levanchelidze(a)gmail.com
Created attachment 49003
--> http://bugs.winehq.org/attachment.cgi?id=49003
steam terminal output
I installed Steam on fresh wineprefix and then downloaded Audiosurf and started
it I got an error here is a screenshot of it
http://i.imgur.com/RTXFHoD.png
and terminal outputs
--
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=35997
Bug ID: 35997
Summary: Polar Websync 2.8.1 not recognizing USB device ( RC3
GPS )
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: evorster(a)gmail.com
Hi there.
Thanks for fixing bug 35284 above.
I installed Websync on my Arch Linux box, and it installed beautifully.
Unfortunately, Websync does not seem to recognize my RC3.
I launch the Websync app, and whether I click on "Training Computer" or
"Synchronize" the app never gets past the "Connect" bit, and the dot next to it
stays red, instead of turning green like it does in Windows boxes when I have
the device plugged in.
I am happy to follow instructions on getting more information for you, and also
building applications from source code and applying patches in testing, as I
used to use a sources-based distrobution before.
Kind regards,
Evert Vorster
--
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=47943
Bug ID: 47943
Summary: Can't install .NET Framework 4.5...!!
Product: Wine
Version: 4.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dev(a)intro.ch
Distribution: ---
I did it as your website says:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=25478
Output:
jmarti@debian-martij-dev:~$ wget
'https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetric…'
--2019-10-16 10:36:19--
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetric…
Auflösen des Hostnamens »raw.githubusercontent.com (raw.githubusercontent.com)«
… 151.101.0.133, 151.101.64.133, 151.101.128.133, ...
Verbindungsaufbau zu raw.githubusercontent.com
(raw.githubusercontent.com)|151.101.0.133|:443 … verbunden.
HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK
Länge: 815719 (797K) [text/plain]
Wird in »»winetricks«« gespeichert.
winetricks 100%[===================>] 796.60K --.-KB/s in 0.09s
2019-10-16 10:36:19 (9.04 MB/s) - »»winetricks«« gespeichert [815719/815719]
jmarti@debian-martij-dev:~$ chmod +x ~/winetricks
jmarti@debian-martij-dev:~$ env WINEPREFIX=$HOME/winedotnet wineboot --init
wine: created the configuration directory '/home/jmarti/winedotnet'
0009:err:file:init_redirects cannot open L"C:\\windows" (c000000f)
0012:err:ole:marshal_object couldn't get IPSFactory buffer for interface
{00000131-0000-0000-c000-000000000046}
0012:err:ole:marshal_object couldn't get IPSFactory buffer for interface
{6d5140c1-7436-11ce-8034-00aa006009fa}
0012:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub,
hres=0x80004002
0012:err:ole:CoMarshalInterface Failed to marshal the interface
{6d5140c1-7436-11ce-8034-00aa006009fa}, 80004002
0012:err:ole:get_local_server_stream Failed: 80004002
0014:err:ole:marshal_object couldn't get IPSFactory buffer for interface
{00000131-0000-0000-c000-000000000046}
0014:err:ole:marshal_object couldn't get IPSFactory buffer for interface
{6d5140c1-7436-11ce-8034-00aa006009fa}
0014:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub,
hres=0x80004002
0014:err:ole:CoMarshalInterface Failed to marshal the interface
{6d5140c1-7436-11ce-8034-00aa006009fa}, 80004002
0014:err:ole:get_local_server_stream Failed: 80004002
Could not load wine-gecko. HTML rendering will be disabled.
Could not load wine-gecko. HTML rendering will be disabled.
wine: configuration in '/home/jmarti/winedotnet' has been updated.
jmarti@debian-martij-dev:~$ 0037:err:ntoskrnl:ZwLoadDriver failed to create
driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\MountMgr":
c0000035
0035:err:service:process_send_command service protocol error - failed to write
pipe!
0036:err:rpc:RpcServerAssoc_FindContextHandle no context handle found for uuid
{547d11a9-ca7c-4aba-bc02-5197078f31b9}, guard (nil)
0043:err:rpc:RpcAssoc_BindConnection rejected bind for reason 0
0023:err:rpc:I_RpcReceive we got fault packet with status 0x1c00001a
0036:err:rpc:RpcServerAssoc_FindContextHandle no context handle found for uuid
{61c914d6-e100-4958-b46e-72c1083239bb}, guard (nil)
0023:err:rpc:I_RpcReceive we got fault packet with status 0x1c00001a
0035:err:rpc:RpcServerAssoc_FindContextHandle no context handle found for uuid
{60f69d71-e7db-4887-8f87-5be0b02a530d}, guard (nil)
0020:err:rpc:I_RpcReceive we got fault packet with status 0x1c00001a
???
Thank you for your feedbacks,
Jan
--
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=46109
Bug ID: 46109
Summary: Joxi crash on start
Product: Wine
Version: 3.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sergey(a)ortoped.org.ru
Distribution: ---
Created attachment 62742
--> https://bugs.winehq.org/attachment.cgi?id=62742
bugtrace
I have a new laptop with Fedora 28. I have installed wine (sudo yum install
wine) and downloaded Joxi from http://dl.joxi.ru/windows/direct/Joxi.exe . It
have installed succesfully but crashes on start. See bugtrace.txt
--
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=51180
Bug ID: 51180
Summary: Actua Soccer 3:can't install game
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: chebanenkoigor93(a)gmail.com
Distribution: ---
Created attachment 70054
--> https://bugs.winehq.org/attachment.cgi?id=70054
Actua Soccer 3 screen
I can't install game in Wine in Windows XP mode in version 6.9
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45516
Bug ID: 45516
Summary: trying to install vcrun2010 sp1 x86
Product: Wine
Version: 2.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 3anuj.behl.75(a)rj-11.cf
Distribution: ---
Created attachment 61901
--> https://bugs.winehq.org/attachment.cgi?id=61901
a program differed from the rest (sqmapi)
a program differed from the rest (sqmapi)
--
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=51205
Bug ID: 51205
Summary: A Chinese company namd UOS privatizes wine's code
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hillwoodroc(a)gmail.com
Distribution: ---
The Wine releases by LGPL, it does not allowed develper privatizes its code.
But a Chinese company UOS (https://www.chinauos.com/) privatizes wine's code
for their Linux distribution.
According to
https://uos.deepin.cn/uos/dists/eagle/non-free/binary-amd64/Packages, they
change the wine's license to non-free. I don't know if they got a special
official authorization.
package: deepin-wine
Version: 2.18-23~rc1
Architecture: all
Maintainer: Debian Wine Party <pkg-wine-party(a)lists.alioth.debian.org>
Installed-Size: 131
Depends: deepin-wine64 (>= 2.18-23~rc1) | deepin-wine32 (>= 2.18-23~rc1),
deepin-wine64 (<< 2.18-23~rc1.1~) | deepin-wine32 (<< 2.18-23~rc1.1~)
Suggests: deepin-wine-binfmt, dosbox (>= 0.74-4.2~)
Built-Using: khronos-api (= 0~svn29735-1.1), unicode-data (= 9.0-1)
Multi-Arch: foreign
Homepage: http://www.winehq.org/
Priority: optional
Section: otherosfs
Filename: pool/non-free/d/deepin-wine/deepin-wine_2.18-23~rc1_all.deb
Size: 96844
SHA256: d4b3af5f1dded68c6983e7bf1b1cee7bdbe1a2789d318abf623b356c389c4bcd
SHA1: ad40fcfd176ebc91422e0d336a5f2a06a3297c68
MD5sum: 2d486b5e05f8636d9fc0e512811aae42
Description: Windows API implementation - standard suite
Wine is a free MS-Windows API implementation.
This is still a work in progress and many applications may still not work.
--
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=51156
Bug ID: 51156
Summary: Carnivores/Carnivores2 Crashe on map trophy room exit
Product: Wine
Version: 6.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: eutychios23(a)gmail.com
Distribution: ---
Carnivores and Carnivores 2 games crash upon exiting the map or trophy room
everything else runs normal in both glide and software modes, bug is present
since at least wine 1.0 days.
--
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=51074
Bug ID: 51074
Summary: Laufbahnwahlportal
Product: WineHQ Bugzilla
Version: 3.2.3
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Lilith.winter17(a)icloud.com
CC: austinenglish(a)gmail.com
Laufbahnwahlprogramm
--
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=33019
Bug #: 33019
Summary: PDH does not support the 'Object Index' when creating
strings
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: pdh
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
PDH allows for performance counters to be specified to address a particular
object. For example, on a machine with multiple processors one uses the
index-specific string:
\Processor(_Total#0)\% Processor Time
rather than the generic string:
\Processor(_Total)\% Processor Time
Silverlight uses these index-specific strings to construct the processor time
string, which poses a problem since this is not currently 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=33018
Bug #: 33018
Summary: PDH does not support the 'Processor' object string
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: pdh
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
Calling PdhLookupPerfNameByIndex with the index 238 should return the string
'Processor', this is used by Silverlight to construct the string:
\Processor(_Total#0)\% Processor Time
to obtain the processor usage.
--
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=51148
Bug ID: 51148
Summary: mp3tag fails to work with files whose filenames
contain non-ASCII characters
Product: Wine
Version: 6.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Distribution: ---
Created attachment 70020
--> https://bugs.winehq.org/attachment.cgi?id=70020
Error renaming the file
Steps to reproduce:
1. Copy any audio file that you have to "тест.mp3"
2. Run and change the working directory (at the leftside bar, at the bottom of
it, "Directory") in Mp3tag to the directory with this file.
Result: Mp3tag will see this file but it won't be able to do anything with it
(read/write tags, rename it, etc.)
$ locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=51115
Bug ID: 51115
Summary: Bug during exe instalation
Product: Wine
Version: 6.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: chodzyg(a)gazeta.pl
Distribution: ---
Same as in previous 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=51050
Bug ID: 51050
Summary: libusb 64-bit not found by wine 6.7 but wine 5.0.5
finds it
Product: Wine
Version: 6.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: usb
Assignee: wine-bugs(a)winehq.org
Reporter: fast.rizwaan(a)gmail.com
Distribution: ---
libusb is found by wine 5.0.5 but not by 6.7.
wine 6.7 inside flatpak
https://github.com/fastrizwaan/flatpak-wine/tree/main/org.winehq.flatpak-wi…:
-----------------------
config.status: executing Makefile commands
configure: WARNING: unrecognized options: --enable-shared, --disable-static,
--without-curses
configure: MinGW compiler not found, cross-compiling PE files won't be
supported.
configure: OpenCL 64-bit development files not found, OpenCL won't be
supported.
configure: pcap 64-bit development files not found, wpcap won't be supported.
configure: libsane 64-bit development files not found, scanners won't be
supported.
====================
configure: libusb-1.0 64-bit development files not found (or too old), USB
devices won't be supported.
====================
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be
supported.
configure: libkrb5 64-bit development files not found (or too old), Kerberos
won't be supported.
configure: jxrlib 64-bit development files not found, JPEG-XR won't be
supported.
configure: Finished. Do 'make' to compile Wine.
---------------------------------------------
But wine 5.0.5
https://github.com/fastrizwaan/flatpak-wine/tree/main/org.winehq.flatpak-wi…
show this:
--------------------------------------------------
config.status: executing Makefile commands
configure: WARNING: unrecognized options: --enable-shared, --disable-static
configure: MinGW compiler not found, cross-compiling PE files won't be
supported.
configure: OpenCL 64-bit development files not found, OpenCL won't be
supported.
configure: pcap 64-bit development files not found, wpcap won't be supported.
configure: libsane 64-bit development files not found, scanners won't be
supported.
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be
supported.
configure: libkrb5 64-bit development files not found (or too old), Kerberos
won't be supported.
configure: Finished. Do 'make' to compile 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=45002
Bug ID: 45002
Summary: Right click on Android x86 and physical mouse is not
working as genuine right mouse click
Product: Wine
Version: 3.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ruthan(a)email.cz
Distribution: ---
Hello,
physical mouse on Androidx86 wine is not working well, left click is somehow
mixed with right click and right click not working as it should.. I dunno, if
it could be fixed on Wine side, or some Androidx86 fixes are needed, overall
user experience sucks.
Tested on Steam client and games like Unreal Tournament 99 demo, which is
working at least in Safe mode and with software renderer.
--
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=51154
Bug ID: 51154
Summary: Battle.net runs into unhandled exception
Product: Wine
Version: 6.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: spn1kolat3sla(a)gmail.com
Distribution: ---
Created attachment 70021
--> https://bugs.winehq.org/attachment.cgi?id=70021
Program error details
Trying to use Wine to run Battle.net on a 2012 Macbook Pro (Manjaro), and it
seems to work fine and about 5 seconds the enclosed error is thrown.
--
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=51623
Bug ID: 51623
Summary: Wine can't launch when an AMD dual graphic card laptop
set to intergrated mode(AMD vega8) via optimus-manager
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hibanaw(a)qq.com
Distribution: ---
Created attachment 70479
--> https://bugs.winehq.org/attachment.cgi?id=70479
display errors
4600H + 1650Ti laptop, archlinux on linux 5.13.10
DE: plasma 5.22.4, X11
using optimus-manager to manage dual graphic cards
everything is ok when i switch to nvidia or hybrid mode
but no window launches in intergrated mode(vega 8)
it said
007c:err:winediag:nodrv_CreateWindow Application tried to create a window, but
no driver could be loaded.
007c:err:winediag:nodrv_CreateWindow Unknown error (998).
007c:err:systray:initialize_systray Could not create tray window
plus,
$DISPLAY has the right value :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=51845
Bug ID: 51845
Summary: Starbound Server (1.4.4 win32) constant thread dead
locking
Product: Wine
Version: 6.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: raltcrafter(a)gmail.com
Distribution: Debian
Proton 6.3 reduces the severity of the issue (I thought this might be helpful
to know)
wine error in question is (in wine 6.18 provided by winehq):
0124:err:sync:RtlpWaitForCriticalSection section 0AC29F00 "?" wait timed out in
thread 0124, blocked by 0118, retrying (60 sec)
on previous wine versions the error would show up as an ntdll related one, for
example wine 5.0 (provided by debian bullseye) shows:
004e:err:ntdll:RtlpWaitForCriticalSection section 0x10a0828 "?" wait timed out
in thread 004e, blocked by 004d, retrying (60 sec)
and exactly the same behavior can be observed on the server.
--
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=51852
Bug ID: 51852
Summary: TP-Link PLC utility 2.2 crashes on startup
Product: Wine
Version: 6.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dave(a)davehigton.me.uk
Distribution: ---
Created attachment 70755
--> https://bugs.winehq.org/attachment.cgi?id=70755
Backtrace
TP-Link PLC utility 2.2 crashes on startup.
The previous report 47334 was just resolved and a new Wine version released, so
I tried to run the TP-Link PLC utility 2.2 again. Still crashes, though the
backtrace is different this time.
Backtrace attached.
I must mention that, every time I install a new version of Wine and try running
the utility, there are two occurrences of a message about unable to find a
runtime (I forget the words, and the messages only occur the first time I run
the utility).
--
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=51858
Bug ID: 51858
Summary: Installer for LEGO® MINDSTORMS® EV3 Home (The new
Mindstorm app) crashes
Product: Wine
Version: 6.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wawrzek(a)gmail.com
Distribution: ---
Created attachment 70769
--> https://bugs.winehq.org/attachment.cgi?id=70769
crash info
Please find attached backtrace with crash info from the installer for the LEGO®
MINDSTORMS® EV3 Home application.
--
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=51879
Bug ID: 51879
Summary: Opening the settings menu on components crashes WINE
Product: Wine
Version: 5.0.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tom403ha(a)gmail.com
Distribution: ---
Created attachment 70809
--> https://bugs.winehq.org/attachment.cgi?id=70809
Backtrace
If you right click >> Settings it always crashes or click on the pull down to
go to pull down menu >> Settings it will crash.
This is a stock trading platform for a Canadian Broker. Everything else seems
to work fine.
I can create a settings file via VM of Windows and make WINE versio open it.
Seems to work.
--
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=51881
Bug ID: 51881
Summary: 32bit LoadLibraryEx with
LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE cannot open 64bit
DLL
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: info(a)daniel-marschall.de
Distribution: ---
Following code fails on a 32 bit app which tries to edit the resources of a 64
bit DLL (in order to edit its resources):
hmod = LoadLibraryEx(FileName, 0, LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE)
GetLastError() reports code 193 (ERROR_BAD_EXE_FORMAT)
This behavior is not correct since LOAD_LIBRARY_AS_DATAFILE and
LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE should only open the file as resource file
and not try to load the image.
Code used here:
https://github.com/danielmarschall/filter_foundry/blob/master/versioninfo_m…
Version of WINE:
$ wine --version
Wine-1.8.7 (Debian 1.8.7-2)
$ uname -a
Linux debian 4.9.0-14-amd64 #1 SMP Debian 4.9.240-2 (2020-10-30) x86_64
GNU/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=51912
Bug ID: 51912
Summary: styx2 wont start
Product: Wine
Version: 6.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: axet(a)me.com
Distribution: ---
Created attachment 70861
--> https://bugs.winehq.org/attachment.cgi?id=70861
screenshot
Game 'Styx Shards of Darkness' show 4-screens and frezzes
--
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=51941
Bug ID: 51941
Summary: opening a league of legends client does not work and
end up with bug
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: emptyabyss86(a)protonmail.com
Distribution: ArchLinux
Created attachment 70911
--> https://bugs.winehq.org/attachment.cgi?id=70911
the bug or error after a timeout
as i open league of legends snap dev mode in terminal it gives me an error with
a bug, it opens the client sometimes and take forever and does not open the
game at the end.
notice: log and back trace in the same .txt file
--
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=38329
Bug ID: 38329
Summary: 64-bit Double Commander hangs
Product: Wine
Version: 1.7.38
Hardware: x86-64
URL: https://sourceforge.net/projects/doublecmd/files/DC%20
for%20Windows%2064%20bit/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jhansonxi(a)gmail.com
Distribution: ---
The 64-bit version of open-source file manager Double Commander hangs at
execution, loading the CPU at 100%. The 32-bit version is not affected.
Occurs with 0.5.11, 0.6.0, and 0.6.1 betas.
Xubuntu 14.04.2 x86_64
--
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=39841
Bug ID: 39841
Summary: Double Commander context menus missing most entries
Product: Wine
Version: 1.8
Hardware: x86
URL: http://sourceforge.net/p/doublecmd/wiki/Download/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: jhansonxi(a)gmail.com
Distribution: Ubuntu
Double Commander 0.6.6 beta build 6327M
32-bit (64-bit doesn't function as per bug #38329)
Right-clicking in an empty space within the directory view in WinXP shows
"Refresh, Sort by, Paste, New Properties". In Wine it triggers an error dialog
stating "Error: Invalid parameter".
Right clicking on a a text file in WinXP shows "Open, Print, Edit, Open with,
Actions, Send to, Cut, Copy, Create shortcut, Delete, Rename, Properties". In
Wine it only shows "Actions>View, Edit". Wine reports:
fixme:shell:ContextMenu_HandleMenuMsg2 (0x2dd8ed0)->(0x117 0x602c6 0x0
0x1b7ead4): stub
--
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=50756
Bug ID: 50756
Summary: "Call not implemented" when using "SVN update" with
TortoiseSVN
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lexlexlex(a)gmail.com
Distribution: ---
Created attachment 69541
--> https://bugs.winehq.org/attachment.cgi?id=69541
"Call not implemented." when SVN updating with TortoiseSVN
To reproduce:
1. Install TortoiseSVN in a 64-bit wine prefix.
2. Use TortoiseSVN in that wine prefix to check out an SVN repository. You can
do that with a command line like this: wine TortoiseProc.exe /command:checkout
/path:"Z:\path\to\the\checkout\"
3. Commit a change to that SVN repository from elsewhere.
3. SVN update that SVN repository using the TortoiseSVN installation made in
step 1. You can do that with a command like this: wine TortoiseProc.exe
/command:update /path:"Z:\path\to\the\checkout\"
Current behavior:
When TortoiseSVN tries to update, it says it tries to move something at
[...]\.tmp\svn-[hexadecimal] to a .svn-base file or folder. I can't really
tell what it is, but my attached screenshot shows what I see when doing this.
Expected behavior:
TortoiseSVN is expected to work the same as in Windows when performing this
operation.
Additional information:
This is not a regression, as far as I can tell, since I've been trying to use
this functionality since wine 5.x, and it's still not working in wine 6.3.
Also, since it's hard (impossible?) to get the Windows context menu in any wine
file manager, I made my own nemo actions (context menu entries in the nemo file
manager for Linux) which call TortoiseSVN via CLI to open its menus. CLI
TortoiseSVN documentation for doing that is here:
https://tortoisesvn.net/docs/nightly/TortoiseSVN_en/tsvn-automation.html
These nemo_action files are available upon request.
--
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=43577
Bug ID: 43577
Summary: unit test: DBGrid inplace editor dropdown does not
work and worked on version 2.0.2
Product: Wine
Version: 2.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Brad.Wine1(a)amaitis.com
Distribution: ---
version 2.0.2 works
winehq-devel
wine --version
wine-2.13
and
wine-2.14
If you click the dropdown in the Show column on the grid stable 2.0.2 works and
the 2.13 and 2.14 dev version does not let you select from the list shown to
change the value of the field.
http://www.ateksol.com/dev/unittest/GridDropDown.exe
sha1sum
cea42ec431f985a802203be10e4cae6abe6afde5 GridDropDown.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=43608
Bug ID: 43608
Summary: Altium Designer: Drop down menu entry not clickable
since Wine 2.13
Product: Wine
Version: 2.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: afb(a)mailbox.org
Distribution: ---
Since upgrade to Wine 2.13 and further, Altium Designer 17 returns the
following error when selecting an entry in any drop down menu:
Cannot focus a disabled or invisible window at 3008640F.
AdvSch.dll, Base Address: 2FE60000.
The drop down menu then resets. At this time, with parameter warn-all, Wine
2.13 outputs the following debug message:
fixme:explorerframe:taskbar_list_AddTab iface 0x10680510, hwnd 0x1053c stub!
fixme:explorerframe:taskbar_list_ActivateTab iface 0x10680510, hwnd 0x1053c
stub!
When selecting any menu entry with the return key instead, Altium Designer
works as expected.
The last Wine version showing expected behaviour is 2.12. OS is 4.12.8-2-ARCH.
--
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=43630
Bug ID: 43630
Summary: Altium Designer Installer - Richedit control shows rtf
code instead of text
Product: Wine
Version: 2.15
Hardware: x86
URL: https://s3.amazonaws.com/altium-release-manager/Altium
_Designer_17/AltiumDesignerSetup_17_1_6.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Just download the attached installer, click 'Next' and change the language to
German. It doesn't show German text, but richedit coded text.
winetricks "riched20" works as workaround.
Side note: Currently hard to test, since it's blocked by Bug 43608/Bug 43577.
But it's still existent in wine-2.15 if you account for the 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=51117
Bug ID: 51117
Summary: Silverlight_x64.exe crashes
Product: Wine
Version: 6.8
Hardware: x86-64
URL: https://download.informer.com/win-1191252797-540362d2-
6f0e275c/lms-ev3_full-setup_1.4.5_en-us_win32.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
The installer for Lego Mind Storms crashes , because apparently the
Silverlight_x64.exe crashes into unimplemented function
wine: Call from 000000007B01234E to unimplemented function
KERNEL32.dll.BasepDebugDump, aborting
wine: Unimplemented function KERNEL32.dll.BasepDebugDump called at address
000000007B01234E (thread 0178), starting debugger...
If you unzip the installer you can find it in
LEGO MINDSTORMS EV3 Home Edition/Products/Silverlight_Installer/MSSilverlight/
sha1sum Silverlight_x64.exe
55fd768b40ccf1286dd7555398e4116f2888fb3a Silverlight_x64.exe
I don`t know what purpose calling this function serves, but it is not present
(any more I think?) in win7 nor win10 kernel32. The installer finishes fine if
entry is removed.
I`ll send patch
--
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=50147
Bug ID: 50147
Summary: Microsoft WebView2 "evergreen bootstrapper"/installer
needs IStream_CopyTo
Product: Wine
Version: 5.21
Hardware: x86-64
URL: https://developer.microsoft.com/en-us/microsoft-edge/w
ebview2/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shlwapi
Assignee: wine-bugs(a)winehq.org
Reporter: bshanks(a)codeweavers.com
Distribution: ---
The "evergreen bootstrapper" installer for Microsoft's WebView2 runtime uses
IStream_CopyTo() from memory to a file. With a quick hack implementation it
launched and appeared to install the runtime correctly.
--
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=50830
Bug ID: 50830
Summary: Process Hacker 2.38 crashes on unimplemented function
advapi32.dll.LsaEnumerateAccounts
Product: Wine
Version: 6.4
Hardware: x86-64
URL: https://github.com/processhacker/processhacker/release
s/download/v2.38/processhacker-2.38-bin.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: the.ideals(a)gmail.com
Distribution: ---
1. Run ProcessHacker.exe
2. Open Hacker menu
3. Select Run as..
wine: Call from 000000007B01182D to unimplemented function
advapi32.dll.LsaEnumerateAccounts, aborting
https://github.com/processhacker/processhacker/search?q=LsaEnumerateAccounts
sha1sum processhacker-2.38-bin.zip
f9ae9036e657393599d3282dddda4ccbb33ae11b processhacker-2.38-bin.zip
du -sh processhacker-2.38-bin.zip
3.3M processhacker-2.38-bin.zip
--
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=48578
Bug ID: 48578
Summary: Sky Go app crashes on startup
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: justus.jones(a)posteo.org
Distribution: Other
Created attachment 66411
--> https://bugs.winehq.org/attachment.cgi?id=66411
Terminal output with WINEDLLOVERRIDES=libGLESv2.dll=d
The Sky Go app (OnDemand Pay TV in Germany) crashes on startup after briefly
showing a splash screen.
The installer for the app can be downloaded here:
https://www.sky.de/produkte/sky-go-158150
There's no version information.
$ sha256sum Sky\ Go.exe
7924160fd16917e96a17146017d1bc70085e1674610ba9ccb91da4747cfccb14 Sky Go.exe
I've tried with wine and wine-staging 5.0, both with the hack from
https://bugs.winehq.org/show_bug.cgi?id=44055 in dwmapi_main.c applied to avoid
an error regarding the Aero theme.
Running the app without any dll overrides results in a black window as
described in https://bugs.winehq.org/show_bug.cgi?id=44985 and the app crashing
after a few seconds.
Using WINEDLLOVERRIDES=libGLESv2.dll=d shows the splash screen, the app checks
for updates which seems to work (the "Checking for updates" message disappears
after a few seconds), window controls (minimize, maximize, close buttons)
appear in the top right corner. Then the app crashes without any error message.
--
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=44178
Bug ID: 44178
Summary: Diablo 2 locks up when connecting to battle.net
Product: Wine
Version: 3.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bruce(a)biz.winehq.zuhause.org
Distribution: ---
Created attachment 59942
--> https://bugs.winehq.org/attachment.cgi?id=59942
output from wine command
This started occurring a couple of days ago, running on a wine 1.x version. I
upgraded to Wine 3.0-rc1 and here is the log from the terminal window. Note
that the last few lines, starting with
0043:fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! take
place minutes after it locks up, after I click on the close window button.
--
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=15315
Summary: Ace Online (aka Space Cowboy/Flysis/Air Rivals) does not
load past launcher with WINE
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: littlegator(a)gmail.com
I'm somewhat new to Linux, so if anyone offers any fixes, I may not be sure how
to do it. Please inform me of the exact procedure of the fix (or anything that
may advance the situation) and I will gladly do what you ask.
Now, on to the problem. I load up Ace Online with WINE 1.0-rc3 and it brings me
to the launcher. I type in my login details, select my resolution (which is
1024 x 768), uncheck the "windowed" check box (which appears to have no effect
on the output), and wait. The game goes full screen and is white for a few
seconds. It switches to black, then, after about 10 or 15 seconds, a white
square appears in the middle of the screen. It disappear within a few frames of
appearing, and I'm stuck here. Same thing happens when windowed, it just isn't
full screen. During this process, it seems to be outputting every single
mission log in the game to the debug window. The output file is extremely long.
Now, my setup:
I'm running WINE 1.0-rc3 with DirectX9.0 installed using WineTricks. I'm
running a 1024x768 virtual desktop with no window decorations and window
manager can not control the windows.
My PC:
Intel Pentium 4 1.6GHz
512MB RAM (not sure on what type >_>)
ATI Radeon 9700 pro 128MB onboard RAM using latest Catalyst drivers
running 3.5.6-9.fc7 Fedora release: 2.6.21-1.3194.fc7
While I await a response, I'm going to attempt updating Fedora since it's
apparently an older version. I've attached the a couple output files and a
dxdiag if it may be useful.
--
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=27716
Summary: Dragon Nest (Chinese): crashes before login screen
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eric.gralco(a)gmail.com
Created an attachment (id=35467)
--> (http://bugs.winehq.org/attachment.cgi?id=35467)
Fixmes that are thrown during the crash
The game must be started from dnlauncher.exe. After the loading screen the game
goes to the animation before the login screen where it crashes. For the record
the game also lags at this point on Windows but does not crash.
--
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=45254
Bug ID: 45254
Summary: Buffer overflow, X file children MAX_CHILDREN limit
too small, crashes BIONICLE: The Legend of Mata Nui
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dxof
Assignee: wine-bugs(a)winehq.org
Reporter: legojrmastermodelbuilder(a)gmail.com
Distribution: ---
In dlls/d3dxof/d3dxof_private.h MAX_CHILDREN is defined as 200, which is too
small a buffer for some existing DirectX model .X files:
https://github.com/wine-mirror/wine/blob/4102d8a0dc1b02d37d834f17d1925f3b0d…
In dlls/d3dxof/parsing.c there is actually a warning if that number is
exceeded, but the bounds checking happens after the buffer would be overflown,
so it may read the wrong value or simply crash instead:
https://github.com/wine-mirror/wine/blob/99a5afc09b1e8928a2b3270ce67784083d…
Native Windows does not appear to impose a hard limit, or if there is one it is
larger than 0xFFFF (the highest size I tested).
This limitation impacts at least one Windows application, namely the game
BIONICLE: The Legend of Mata Nui.
This would impact Wine on all platforms.
GitHub issue for reference:
https://github.com/TheLegendOfMataNui/game-issues/issues/110
--
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=4713
--- Comment #33 from joaopa <jeremielapuree(a)yahoo.fr> ---
Bug still occurs with wine-6.20.
--
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=4666
Jeff Zaroyko <jeffz(a)jeffz.name> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|sense(a)ubuntu.com |
--
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=4666
Jeff Zaroyko <jeffz(a)jeffz.name> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|sdk(a)riseup.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=4666
Jeff Zaroyko <jeffz(a)jeffz.name> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|runescapefrompw(a)live.com |
--
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=12694
Summary: Air Rival Crashes after login
Product: Wine
Version: 0.9.59.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=11224&iTestingId=22275
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mifuyne(a)gmail.com
Created an attachment (id=12349)
--> (http://bugs.winehq.org/attachment.cgi?id=12349)
Log of Air Rival from Launch to Crash
The game crashes without going into the game itself. Been tested on different
versions of Windows (slightly different error on some version). The following
address leads to the log, from launcher to the crash point. It's also attached
to this report.
http://pastebin.org/30959
WINE was set to Emulate a virtual desktop at 1024 x 768 (thus avoiding the
resolution problem mentioned here:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=11224&iTesting…
--
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=47664
Bug ID: 47664
Summary: Program APT refuses to load on starting.
Product: Wine
Version: 4.0.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wes(a)mudlakepottery.com
Distribution: ---
Created attachment 65107
--> https://bugs.winehq.org/attachment.cgi?id=65107
error trace of APT load failure
APT loads up to install of therm and humidity sensors and crashes, never fully
loads.
--
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=51889
Bug ID: 51889
Summary: Astro Photography Tool (APT) does not start
Product: Wine
Version: 6.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kd6awa(a)hotmail.com
Distribution: ---
Created attachment 70835
--> https://bugs.winehq.org/attachment.cgi?id=70835
Details from Program Error dialog box
App splash screen starts but freezes at "Initializing TemPer or TemPerHUM
sensor..." even if Shift key is held down during start (which is supposed to
prevent any attempt at auto connecting). Dialog box Program Error appears with
"The program APT.exe has encountered a serious problem and needs to close."
https://astrophotography.app/
--
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=4666
--- Comment #62 from Bruni <earns.61(a)gmail.com> ---
(In reply to Anastasius Focht from comment #61)
> From a quick glance at least one problem (comment #59) is still there. Might
> revisit later.
Hi Anastasius.
Could you say if this commit relates to the problem/workaround to write out PE
files from the in-memory representation you described in comment #59
https://source.winehq.org/git/wine.git/blobdiff/d8be85863fedf6982944d06ebd1…
--
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=51236
Bug ID: 51236
Summary: 6.0.1 build fails in Fedora 34
Product: Wine
Version: 6.0.1
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
Created attachment 70107
--> https://bugs.winehq.org/attachment.cgi?id=70107
Fedora 34 failed build log
6.0.1 builds with no problems in Ubuntu/Debian and Fedora 33, but fails in
Fedora 34 with:
[ 855s] winegcc: File does not exist: dlls/gdi32/gdi32.res
[ 855s] make: *** [Makefile:53166: dlls/gdi32/gdi32.dll] Error 2
[ 855s] make: *** Waiting for unfinished jobs....
[ 855s] error: Bad exit status from /var/tmp/rpm-tmp.ecPwPw (%build)
This seems like bug 50811, which was fixed in the development branch
(wine-6.6).
Attaching the full build log from the OBS.
--
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=4666
sevencoloredbox(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|sevencoloredbox(a)gmail.com |
--
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=44192
Bug ID: 44192
Summary: Dragon Age Origins Awakening installer deadlock when
extracting files
Product: Wine
Version: 2.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lorenzofer(a)live.it
Distribution: ---
Created attachment 59959
--> https://bugs.winehq.org/attachment.cgi?id=59959
Wine log
Trying to install Dragon Age Awakening in a clean wineprefix (where there is
already installed Origins) result in a deadlock after ending file extraction.
The installer thus hang completly and must be killed.
Awakenings is composed of two compressed files, one for "core" files, and one
for "addons" file. It's completly random on which file it hangs, sometimes on
the first file sometimes on the second, but is hanging always after it
extracted the last file of the archive (the last line of the installer log is
Extract: packages or Extract : addons with the extracting file percentual
progression, blocking at 99.4% or 100% )
In the log I'm getting:
err:ntdll:RtlpWaitForCriticalSection section 0x7bd1cbc0
"../../../dlls/ntdll/loader.c: loader_section" wait timed out in thread 0009,
bl
ocked by 002d, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7bd1cbc0
"../../../dlls/ntdll/loader.c: loader_section" wait timed out in thread 0032,
bl
ocked by 002d, retrying (60 sec)
err:ntdll:RtlLeaveCriticalSection section 0x117b0 is not acquired
multiple times.
The log is from Wine stagin 2.21, but I tested also with the last wine 3.0rc2
and doesn't change of a comma.
(While searching for similar bugs I found this Bug 22091, but is marked as
fixed, and mention a crash I'm not having)
--
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=4666
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|https://maplelegends.com/do |https://archive.org/downloa
|wnload |d/GMSTSetups/GMST0104/MSSet
| |upTv104.exe
--- Comment #61 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
adding stable download link(s) via Internet Archive.
https://archive.org/download/GMSTSetups/GMST0104/MSSetupTv104.exe
Various Nexon clients (some containing HackShield):
https://archive.org/search.php?query=creator%3A%22Nexon%22&and[]=mediatype%…
>From a quick glance at least one problem (comment #59) is still there. Might
revisit later. It would be just for fun/historical reasons because all older
Nexon game clients are broken due to defunct CDNs and game servers. Also Nexon
abandoned AhnLab's HackShield a long time ago and replaced it with nProtect's
GameGuard.
$ sha1sum MSSetupTv104.exe
2b1c800c0c2ce7d3860dd8ca2156e39320ee15cf MSSetupTv104.exe
$ du -sh MSSetupTv104.exe
2.7G MSSetupTv104.exe
$ wine --version
wine-6.20-96-ge73bb07ff59
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=35116
Bug ID: 35116
Summary: War Rock crash after Updater (startup)
Product: Wine
Version: 1.4.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: juliantheel(a)gmail.com
Classification: Unclassified
Created attachment 46845
--> http://bugs.winehq.org/attachment.cgi?id=46845
Fail
After starting this game (Updater runs) this errror appears.
--
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=51927
Bug ID: 51927
Summary: Skyrim SE: No sound, FAudio assertion failure
Product: Wine
Version: 6.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: gazports(a)gmail.com
Distribution: ---
Created attachment 70895
--> https://bugs.winehq.org/attachment.cgi?id=70895
Screencap of the assertion failure
Skyrim Special Edition (64 bits) displays this assertion failure message on
startup, right after the "Bethesda" splash screen. The game doesn't crash, but
there's no audio from any source. This does not happen with wine-staging 6.19.
Both Wine versions were built with the exact same configuration. Distro is
Gentoo (in case you haven't noticed from the path in the attached screenshot),
kernel 5.10.75. NVidia proprietary drivers, 470.74. Please let me know of any
additional steps I can take to help troubleshooting.
--
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=51866
Bug ID: 51866
Summary: Application tried to create a window, but no driver
could be loaded.
Product: Wine-staging
Version: 6.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: obydux(a)protonmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 70781
--> https://bugs.winehq.org/attachment.cgi?id=70781
Output from my terminal after running winecfg
I'm running Linux Mint 20.2 Xfce edition, I have an AMD Radeon HD 8240 / R3
Series GPU and I use the latest mesa and vulkan drivers from oibaf's PPA. I
also have an AMD E1-6015 CPU. Not sure anything else I can name, never had the
problems with Wine before reinstalling Linux. I tried using the -devel and
-stable branches of Wine and I still get the same 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=43564
Bug ID: 43564
Summary: Prey Demo texture/lighting issues
Product: Wine
Version: 2.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: plata(a)mailbox.org
Distribution: ---
Almost everything is really dark (looks like a room without light). However,
some things like the computer screen seem to have the correct
textures/lighting.
--
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=51807
Bug ID: 51807
Summary: wine-stable : Depends: wine-stable-i386 (=
6.0.1~focal-1) broken packages
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: luarocks(a)onionmail.org
Distribution: ---
Created attachment 70696
--> https://bugs.winehq.org/attachment.cgi?id=70696
error.log
I followed this instruction https://wiki.winehq.org/Ubuntu on Ubuntu 20.04 and
get error "wine-stable : Depends: wine-stable-i386 (= 6.0.1~focal-1) Unable to
correct problems, you have held broken packages".
--
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=34625
Bug #: 34625
Summary: Drakan demo doesn't detect that the graphics card
supports antialiasing
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 46141
--> http://bugs.winehq.org/attachment.cgi?id=46141
Drakan Log
The antialiasing option is grayed out in a preferences window that shows up
when you start the game as well as in in-game settings.
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=50885
Bug ID: 50885
Summary: PdfSharp creates invalid PDF files
Product: Wine
Version: 6.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lauri.kentta(a)gmail.com
Distribution: ---
Created attachment 69696
--> https://bugs.winehq.org/attachment.cgi?id=69696
Minimal example with PdfSharp
PdfSharp (PDF library for .NET) creates invalid PDF files on Wine. Ghostscript
is able to fix the files but reports: ”Error: Unknown operator: '-..' looks
like a malformed number, replacing with 0.”
I've attached a shell script which builds a minimal example with C# / PdfSharp
and demonstrates the error with Ghostscript. Running with Mono (without Wine)
works. Debugging further would probably need a dive into PdfSharp.
In practice, this affects Purple Pen course setting software for orienteering.
--
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=50818
Bug ID: 50818
Summary: Mahou Shoujo Shoumou Sensen - DeadΩAegis (Trial) shows
unreadable text in the message box.
Product: Wine
Version: 6.4
Hardware: x86-64
URL: https://web.archive.org/web/20210306040237/http://storage1.lathercraft.net/download/metalogiq/deadendaegis/D
eadendAegis_trial.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: sagawa.aki+winebugs(a)gmail.com
Distribution: ---
Mahou Shoujo Shoumou Sensen - DeadΩAegis (Trial) (ja:魔法少女消耗戦線 DeadΩAegis 体験版)
is a demo version of Japanese 18+ visual novel game.
After starting the game in the title screen, it shows unreadable text in the
message box.
--
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=49434
Bug ID: 49434
Summary: Wine Gecko crashes upon loading Google Account login
page
Product: Wine-gecko
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: rare_energy(a)protonmail.com
Distribution: ---
Created attachment 67521
--> https://bugs.winehq.org/attachment.cgi?id=67521
Gecko backtrace
Wine Gecko will crash upon visiting https://accounts.google.com/signin/v2
It will work when browsing other sites, though.
Wine versions tested: 5.0.1 and 5.6, both 64-bit with wine32 support.
Wine Gecko versions 2.47.1, both the x86 and x86_64 packages installed.
I've included a backtrace.
--
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=24893
Summary: Explorer++ is missing most right-click options for
files/folders
Product: Wine
Version: 1.3.5
Platform: x86-64
URL: http://www.explorerplusplus.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31524)
--> (http://bugs.winehq.org/attachment.cgi?id=31524)
Log from right-clicking a folder, then a file
Expected behavior:
Right-clicking on a file should open the same menu that would be seen in
Windows Explorer (or Winefile as the case may be), while right-clicking a
folder should do the same, but with an added "open in new tab" option.
Actual behavior:
Right-clicking on a file produces a menu with a single option, which may be
blank or random garbage. It doesn't appear to do anything either way.
Right-clicking on a folder yields a menu with only the option "open in new
tab."
--
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=50845
Bug ID: 50845
Summary: jscript crashes on internal assert(0) in PE build with
clang
Product: Wine
Version: 6.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: jscript
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
CC: jacek(a)codeweavers.com
Distribution: ---
Jacek, adding you to cc:, you might be interested.
This doesn't happen in an ELF build.
In order to reproduce build Wine in PE with clang, and run 'make test' in
dlls/jscript/tests:
Assertion failed: 0, file ../wine/dlls/jscript/jsutils.c, line 245
This the result of the call
hres = jsdisp_define_data_property(ctx->global, L"NaN", const_flags,
jsval_number(NAN));
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/jscript/global.c#l11…
during initialization, no user provided script is even gets started being
interpreted.
It seems that the reason is difference in 'struct _jsval_t' layout
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/jscript/jsval.h#l54
between gcc and clang.
$ clang --version
clang version 11.0.0
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
--
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=50436
Bug ID: 50436
Summary: Upstream FAudio pkg-config file not found
Product: Wine
Version: 6.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: j-r(a)online.de
Distribution: ---
FAusdio recently (November 2020) added an upstream package config file using
the name FAudio.pc, while configure looks for lowercase faudio.pc.
Note that the upstream config file is AFAICT not usable for gstreamer enabled
FAUdio builds. Depending on the fix for that (e.g. if gstreamer is added as an
Dependency in FAudio.pc), an option filtering similar to the one used for
gstreamer might become neccessary.
--
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=47310
Bug ID: 47310
Summary: Canon TS3100 series full driver & software package,
installation is blocked after WinZip extraction with
the message, "To install the software, you must be
logged in to an administrator account."
Product: Wine
Version: 4.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fzcooper(a)gmail.com
Distribution: ---
Created attachment 64617
--> https://bugs.winehq.org/attachment.cgi?id=64617
Error message given by attempted installation.
>From https://wiki.winehq.org/FAQ#Should_I_run_Wine_as_root.3F
"As far as Windows programs are concerned, you are running with administrator
privileges. If an application complains about a lack of administrator
privileges, file a bug; running Wine as root probably won't help."
The TS3122 printer / scanner offers network functionality or I wouldn't even
try the driver in Wine. The Linux counterpart is lacking in features.
Driver download available at:
https://www.usa.canon.com/internet/portal/us/home/support/details/printers/…
The error message appears after this output on both the win7 and win7-x64
versions:
...
Wine-gdb> 003d:fixme:nls:GetThreadPreferredUILanguages 00000038, 0x33faa0,
0x33fab0 0x33faa4
003d:fixme:nls:get_dummy_preferred_ui_language (0x38 0x33faa0 0x33fab0
0x33faa4) returning a dummy value (current locale)
003f:fixme:font:get_outline_text_metrics failed to read full_nameW for font
L"Ani"!
003f:fixme:nls:GetThreadPreferredUILanguages 00000038, 0x23f360, 0x23f370
0x23f364
003f:fixme:nls:get_dummy_preferred_ui_language (0x38 0x23f360 0x23f370
0x23f364) returning a dummy value (current locale)
003f:fixme:nls:GetThreadPreferredUILanguages 00000004, 0x23e8f0, 0x23e900
0x23e8f4
003f:fixme:nls:get_dummy_preferred_ui_language (0x4 0x23e8f0 0x23e900 0x23e8f4)
returning a dummy value (current locale)
003f:fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0x00000001 5 0x23f2e0
0x23f304
003f:fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0x00000001 7 0x23f2f0
0x23f304
Older versions of windows are not supported for this driver and there is no
download available.
--
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=50925
Bug ID: 50925
Summary: Error fetching public key in GetRSAKeyFromCert - File
not found
Product: Wine
Version: 6.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: bcrypt
Assignee: wine-bugs(a)winehq.org
Reporter: msdobrescu(a)gmail.com
Distribution: ---
Created attachment 69740
--> https://bugs.winehq.org/attachment.cgi?id=69740
wine log
Trying to run Photoshop 2021 22.3 64 bit, under wine-6.4 (Staging), fails with:
110:fixme:reg:RegQueryInfoKeyW security argument not supported.
006c:fixme:mountmgr:query_property Faking StorageDeviceProperty data
00fc:fixme:netprofm:list_manager_QueryInterface interface
{00000126-0000-0000-c000-000000000046} not implemented
00fc:fixme:netprofm:connection_point_Advise 00000000175FA510, 00000000175F4400,
00000000175F4420 - semi-stub
00fc:fixme:netprofm:connection_point_Advise 00000000175FA580, 00000000175F4220,
00000000175F4240 - semi-stub
00fc:fixme:netprofm:list_manager_GetConnectivity 00000000175FA4D0,
000000000022F300
012c:fixme:crypt:CryptStringToBinaryW Unimplemented type 4
012c:fixme:crypt:CryptStringToBinaryW Unimplemented type 4
012c:fixme:crypt:CryptImportPublicKeyInfoEx2 (1, 0000000017C8DB50, 00000000,
0000000000000000, 0000000017C8DB38): stub
Error fetching public key in GetRSAKeyFromCert
Error : 0x00000002 (2) Fi?ierul nu a fost g?sit. <-- (translated) File not
found.
Then a message popup appears (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=50805
Bug ID: 50805
Summary: Win32_OperatingSystem class is missing 'ProductType'
Product: Wine
Version: 6.2
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: patch
Severity: normal
Priority: P2
Component: wmi&wbemprox
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Created attachment 69616
--> https://bugs.winehq.org/attachment.cgi?id=69616
patch for producttype
Various installers in chocolatey like OBS Studio first try to install several
windows updates (KB*). They do not even get to the point where install is tried
to start because they fail with
ERROR: Property 'ProductType' cannot be found on this object. Make sure that
itexists.
The install of kb3118401 was NOT successful.
Error while running
'C:\ProgramData\chocolatey\lib\KB3118401\Tools\ChocolateyIntall.ps1'.
See log for details.
Chocolatey seems to use own powershell host (+scripts);
From
ProgramData/chocolatey/extensions/chocolatey-windowsupdate/Install-WindowsUpdate.ps1
:
function Get-OS
{
$wmiOS = Get-WmiObject -Class Win32_OperatingSystem
$version = [Version]$wmiOS.Version
$caption = $wmiOS.Caption.Trim()
$sp = $wmiOS.ServicePackMajorVersion
if ($sp -gt 0) {
$caption += " Service Pack $sp"
}
if ($wmiOS.ProductType -eq '1') {
$productType = 'client'
} else {
$productType = 'server'
}
.
.
The attached patch fixes the bug. I don`t know the difference between 'server'
and 'client', from testbots only w2008s64 returns client (3) so in the patch I
just set Productype to 1.
With this patch at least one update succeeded to install normally and the
others can be "fooled" with a dummy "wusa.exe", so chocolatey believes they
installed and doesn`t try to install them endlessly over and over 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=50318
Bug ID: 50318
Summary: 'HKLM\System\CurrentControlSet\Services\Tcpip\Paramete
rs\DataBasePath' registry entry has non-standard value
Product: Wine
Version: 6.0-rc2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
related to bug 12076 but a preceding registry issue.
Stable download link to 3ds Max 9 trial version via Internet Archive:
https://web.archive.org/web/20150724061434/http://files.modacity.net/softwa…
--- snip ---
$ WINEDEBUG=+seh,+relay,+loaddll,+msi wine msiexec -i 3dsmax9_win32.msi
>>log.txt 2>&1
...
0118:trace:msi:ACTION_CustomAction Handling custom action L"MRSetService" (1
L"Callcustom" L"MRSetService")
...
0118:trace:msi:HANDLE_CustomType1 Calling function L"MRSetService" from
L"C:\\users\\focht\\Temp\\msi9e65.tmp"
...
07d0:Ret KERNEL32.LoadLibraryA() retval=00000000 ret=017e033f
07d0:Ret PE DLL (proc=017EEF6D,module=017B0000
L"msi9e65.tmp",reason=PROCESS_ATTACH,res=00000000) retval=1
...
07d0:Ret KERNEL32.LoadLibraryW() retval=017b0000 ret=100210f6
07d0:Call KERNEL32.GetProcAddress(017b0000,0017eae0 "MRSetService")
ret=1002110a
07d0:Ret KERNEL32.GetProcAddress() retval=017c1c80 ret=1002110a
...
07d0:Call advapi32.RegOpenKeyExA(80000002,01808614
"SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters",00000000,0002001f,014df034)
ret=017c1b81
07d0:Ret advapi32.RegOpenKeyExA() retval=00000000 ret=017c1b81
07d0:Call advapi32.RegQueryValueExA(000000d4,01808604
"DataBasePath",00000000,014df01c,014df03c,014df020) ret=017c0561
07d0:Ret advapi32.RegQueryValueExA() retval=00000000 ret=017c0561
07d0:Call KERNEL32.ExpandEnvironmentStringsA(014df03c
"C:\\windows\\system32\\drivers",014df43c,00000400) ret=017c1bfd
07d0:Ret KERNEL32.ExpandEnvironmentStringsA() retval=0000001c ret=017c1bfd
...
07d0:Call KERNEL32.GetFullPathNameA(019a0ea8
"C:\\windows\\system32\\drivers\\services",00000104,014df688,014df4f8)
ret=017de351
...
07d0:Ret KERNEL32.GetFullPathNameA() retval=00000024 ret=017de351
...
07d0:Call KERNEL32.FindFirstFileA(019a0ea8
"C:\\windows\\system32\\drivers\\services",014df50c) ret=017de3f1
...
07d0:Ret KERNEL32.FindFirstFileA() retval=ffffffff ret=017de3f1
....
07d0:Call KERNEL32.CreateFileA(019a0ea8
"C:\\windows\\system32\\drivers\\services",80000000,00000000,014df670,00000003,00000080,00000000)
ret=017de5f4
...
07d0:Ret KERNEL32.CreateFileA() retval=ffffffff ret=017de5f4
07d0:Call KERNEL32.GetLastError() ret=017de2cf
07d0:Ret KERNEL32.GetLastError() retval=00000002 ret=017de2cf
...
07d0:Call KERNEL32.RaiseException(e06d7363,00000001,00000003,014df770)
ret=017eec32
07d0:Call ntdll.memcpy(014df6c8,014df770,0000000c) ret=7b00ff18
07d0:Ret ntdll.memcpy() retval=014df6c8 ret=7b00ff18
07d0:trace:seh:dispatch_exception code=e06d7363 flags=1 addr=7B00FF28
ip=7b00ff28 tid=07d0
07d0:trace:seh:dispatch_exception info[0]=19930520
07d0:trace:seh:dispatch_exception info[1]=014df7a0
07d0:trace:seh:dispatch_exception info[2]=01811c9c
07d0:trace:seh:dispatch_exception eax=014df6b4 ebx=0017ea01 ecx=014df770
edx=0000000c esi=00000003 edi=014df720
07d0:trace:seh:dispatch_exception ebp=014df708 esp=014df6b4 cs=7bc50023
ds=14d002b es=7bc3002b fs=14d0063 gs=006b flags=00000216
07d0:trace:seh:call_vectored_handlers calling handler at 7B00F270 code=e06d7363
flags=1
07d0:trace:seh:call_vectored_handlers handler at 7B00F270 returned 0
07d0:trace:seh:call_stack_handlers calling handler at 01805E2E code=e06d7363
flags=1
...
07d0:Call user32.MessageBoxA(00000000,0181d368 "Runtime Error!\n\nProgram:
C:\\windows\\system32\\msiexec.exe\n\n\r\nThis application has requested the
Runtime to terminate it in an unusual way.\nPlease contact the application's
support team for more information.\r\n",0180b7b8 "Microsoft Visual C++ Runtime
Library",00012010) ret=017fdfa1
...
--- snip ---
The custom action dll appends 'services' to the path queried from registry and
tries to access the file.
'C:\\windows\\system32\\drivers\\services'
This obviously can't work because file doesn't exist -> bug 12076
But the installer is supposed to access
'C:\\windows\\system32\\drivers\\etc\\services' here. Wine uses a non-standard
path here.
Wine registry:
--- snip ---
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters]
"DataBasePath"="C:\\windows\\system32\\drivers"
--- snip ---
Wine source:
https://source.winehq.org/git/wine.git/blob/3acb0b3326c4120ea0c4c6076bd03c9…
--- snip ---
3947
HKLM,"System\CurrentControlSet\Services\Tcpip\Parameters","DataBasePath",2,"%11%\drivers"
--- snip ---
According to Microsoft docs:
https://support.microsoft.com/en-us/help/314053/tcp-ip-and-nbt-configuratio…
--- quote ---
DatabasePath
Key: Tcpip\Parameters
Value Type: REG_EXPAND_SZ - Character string
Valid Range: A valid Windows NT file path
Default: %SystemRoot%\System32\Drivers\Etc
Description: This parameter specifies the path of the standard Internet
database files (HOSTS, LMHOSTS, NETWORKS, PROTOCOLS). It is used by the Windows
Sockets interface.
--- quote ---
The custom action dll also calls 'ExpandEnvironmentStringsA' afterwards which
suggests this key is indeed of 'REG_EXPAND_SZ' type.
Autodesk KB:
https://knowledge.autodesk.com/search-result/caas/sfdcarticles/sfdcarticles…
--- quote ---
Issue: 3DS Max installs will fail. The log shows CustomAction MRSetService
returned actual error code 1603
Causes: Mental Ray Satallite service cannot be created
Solution:
One known cause of this error is a missing "Services" file from
C:\Windows\System32\drivers\etc.
If that file is missing it can be recovered with a windows OS repair or by
simply copying it over from a system that still has the file.
Workaround:
If the user will not be using Mental Ray for rendering you can remove the
Mental Ray service from the installation. Steps below
1.) Download and install orca msi editing tool
http://www.technipages.com/download-orca-msi-editor
2.) Copy the install media for 3ds max to a local drive or navigate to the
downloaded installer directory. Find the install msi for 3ds Max, usually
x64/max/3dsmax.msi
3.) Right click the msi and choose edit in orca
4.) In "Custom Actions" Search for the line MRSetService and delete it. Close
Orca and save the changes.
5.) Run the 3ds Max install again.
--- quote ---
It seems the key was added with bug 45821 ("Metasploit Console won't start due
to missing registry value
HKLM\System\CurrentControlSet\Services\Tcpip\Parameters\DataBasePath") but with
non-standard value.
https://source.winehq.org/git/wine.git/commitdiff/bfe48889aeda69cac81e46b1d…
No idea where Alex got the key value from.
After the fix, the installer will still abort but now trying the proper
non-existing file path.
This will match what the Wine-Staging patchset from bug 12076 does: creating
the missing files in 'C:\\windows\\system32\\drivers\\etc\\' directory.
https://github.com/wine-staging/wine-staging/blob/master/patches/wineboot-d…
$ sha1sum 3dsmax9.zip
d04eeb0eeabbb7cedaf536170fb6879b2faf1a25 3dsmax9.zip
$ du -sh 3dsmax9.zip
590M 3dsmax9.zip
$ wine --version
wine-6.0-rc2
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=51035
Bug ID: 51035
Summary: Alacritty v0.7.2 portable crashes
Product: Wine
Version: 6.6
Hardware: x86-64
URL: https://web.archive.org/web/20210420101639/https://github.com/alacritty/alacritty/releases/download/v0.7.2/A
lacritty-v0.7.2-portable.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: the.ideals(a)gmail.com
Distribution: ---
Alacritty is a cross-platform, OpenGL terminal emulator. Related to WSL.
Source: https://github.com/alacritty/alacritty
[Windows] ConPTY support (Windows 10 version 1809 or higher)
Alacritty doesn't create the config file for you, but it looks for one in the
following locations
%APPDATA%\alacritty\alacritty.yml
https://web.archive.org/web/20210420102248/https://github.com/alacritty/ala…
0110:fixme:rawinput:RegisterRawInputDevices Unhandled flags 0x2100 for device
0.
0110:fixme:rawinput:RegisterRawInputDevices Unhandled flags 0x2100 for device
1.
010c:Call KERNEL32.SetEnvironmentVariableW(001979b0
L"DESKTOP_STARTUP_ID",00000000) ret=1400514ff
010c:Call ntdll.RtlInitUnicodeString(0011bf60,001979b0 L"DESKTOP_STARTUP_ID")
ret=7b04f9ec
010c:Call user32.MessageBoxW(00000000,001a14e0 L"panicked at 'failed to remove
environment variable `\"DESKTOP_STARTUP_ID\"`: Environment variable not found.
(os error 203)', library\\std\\src\\env.rs:365:29\n\nPress Ctrl-C to
Copy",00197830 L"Alacritty: Runtime Error",00012010) ret=1400b2c1c
Related to PR: https://github.com/alacritty/alacritty/pull/2525
// Prevent child processes from inheriting startup notification env.
env::remove_var("DESKTOP_STARTUP_ID");
sha1sum Alacritty-v0.7.2-portable.exe
ab6b11090f355b3d0711423f4076ff06d048a5e1 Alacritty-v0.7.2-portable.exe
du -sh Alacritty-v0.7.2-portable.exe
3.9M Alacritty-v0.7.2-portable.exe
Various WSL tools list: https://github.com/sirredbeard/Awesome-WSL
--
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=50492
Bug ID: 50492
Summary: Amazon Chime 4.x (.NET 4.5 app) reports 'Failed to
InjectErrorHandlingScript, Unable to cast COM object
of type 'System.__ComObject' to interface type
'mshtml.HTMLHeadElement''
Product: Wine
Version: 6.0-rc5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as it says. Extracted from bug 48474
Stable download link via Internet Archive:
https://web.archive.org/web/20200117134752/https://clients.chime.aws/win/re…
Prerequisite: 'winetricks -q dotnet452'
---
Managed exception happens after clicking 'Join meeting without account':
Chime logs 'trace-2021-01-12.log':
--- snip ----
BibaSource Information 0 [1] 01/12/2021 16:25:33.002427:
*****************
BibaSource Information 0 [1] 01/12/2021 16:25:33.141427: Starting
Amazon Chime...
BibaSource Information 0 [1] 01/12/2021 16:25:33.142427: Current
Working Directory: C:\users\***\Application Data\Chime
BibaSource Information 0 [1] 01/12/2021 16:25:33.142427: Enabling TLS
1.2
BibaSource Error 2 [3] 01/12/2021 16:25:33.158427: Failed to handle
dump files,Could not find a part of the path 'C:\users\***\Application
Data\Chime\dumpfiles'.
BibaSource Information 0 [1] 01/12/2021 16:25:33.478429: .NET
framework detected: 4.5 - Release #379893
BibaSource Information 0 [1] 01/12/2021 16:25:33.484429: Registering
to Events
BibaSource Information 0 [1] 01/12/2021 16:25:33.624429: Registering
Windows
BibaSource Information 0 [1] 01/12/2021 16:25:33.983431: Combined
Identifier:
258989E2-A020-4BC9-A7B1-78F80C83DDF0-0-BFEBFBFF000306C3-Samsung-SSD-860-EVO-2TB-S3YVNX0N403389X
BibaSource Error 2 [1] 01/12/2021 16:25:34.008431: Failed to get the
hardware information from Win32_ComputerSystem
Error: Error code: 0x80041002
BibaSource Error 2 [1] 01/12/2021 16:25:34.034431: Failed to get the
hardware information from Win32_ComputerSystem
Error: Error code: 0x80041002
BibaSource Error 2 [1] 01/12/2021 16:25:34.069431: Failed to get the
hardware information from Win32_OperatingSystem
Error: Error code: 0x80041002
Native library pre-loader is trying to load native SQLite library
"C:\users\***\Application Data\Chime\x86\SQLite.Interop.dll"...
BibaSource Information 0 [1] 01/12/2021 16:25:35.010435:
MetricsManager::SendCustomEvent type: App Active
BibaSource Information 0 [1] 01/12/2021 16:25:35.017435: App:: user
config directory = C:\users\***\Local Settings\Application
Data\Amazon\Chime.exe_Url_ekajjg3kle30m4k4edurcaufrxkea4tf\4.28.9164.0
BibaSource Information 0 [1] 01/12/2021 16:25:35.098435: Trying to
create identity session from saved config.
BibaSource Error 2 [1] 01/12/2021 16:25:35.105435: Login failed with
saved credentials : Credential is invalid
BibaSource Information 0 [1] 01/12/2021 16:25:35.109435: Create task
bar icon
BibaSource Information 0 [1] 01/12/2021 16:25:35.357436:
WindowManager::ShowModalWindow:: Displaying the view IdentityLoginView
BibaSource Information 0 [1] 01/12/2021 16:25:36.362440: web browser
IE version = 6.0.2800.1106
BibaSource Information 0 [1] 01/12/2021 16:25:36.362440: subscribe to
webbrowser's NavigateError
BibaSource Information 0 [1] 01/12/2021 16:25:36.379440: Navigating
to: https://signin.id.ue1.app.chime.aws/
BibaSource Error 2 [1] 01/12/2021 16:25:59.223533: Failed to
InjectErrorHandlingScript,Unable to cast COM object of type
'System.__ComObject' to interface type 'mshtml.HTMLHeadElement'. This operation
failed because the QueryInterface call on the COM component for the interface
with IID '{3050F561-98B5-11CF-BB82-00AA00BDCE0B}' failed due to the following
error: Exception from HRESULT: 0x80004002 (E_NOINTERFACE).
...
--- snip ---
It's non-fatal as the application wraps that part in exception handler.
Nevertheless this shouldn't happen.
--- snip ---
(dc.e0): CLR exception - code e0434352 (first chance)
Exception object: 0297cdd0
Exception type: System.InvalidCastException
Message: Unable to cast COM object of type 'System.__ComObject' to
interface type 'mshtml.HTMLHeadElement'. This operation failed because the
QueryInterface call on the COM component for the interface with IID
'{3050F561-98B5-11CF-BB82-00AA00BDCE0B}' failed due to the following error:
Exception from HRESULT: 0x80004002 (E_NOINTERFACE).
InnerException: <none>
StackTrace (generated):
<none>
StackTraceString: <none>
HResult: 80004002
OS Thread Id: 0xe0 (0)
Child SP IP Call Site
0031dd94 7b00ff28 [HelperMethodFrame_1OBJ: 0031dd94]
0031de18 0cc5ac40
BibaApplication.Views.IdentityLoginView.InjectErrorHandlingScript()
0031de44 0cc5aab2
BibaApplication.Views.IdentityLoginView.WebBrowserNavigated(System.Object,
System.Windows.Forms.WebBrowserNavigatedEventArgs)
0031de74 078c18d9
System.Windows.Forms.WebBrowser.OnNavigated(System.Windows.Forms.WebBrowserNavigatedEventArgs)
0031de78 06fcde76
System.Windows.Forms.WebBrowser+WebBrowserEvent.NavigateComplete2(System.Object,
System.Object ByRef)
0031e1c4 01892552 [DebuggerU2MCatchHandlerFrame: 0031e1c4]
0031df70 01892552 [HelperMethodFrame_PROTECTOBJ: 0031df70]
System.RuntimeMethodHandle.InvokeMethod(System.Object, System.Object[],
System.Signature, Boolean)
0031e244 79a044bd
System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(System.Object,
System.Object[], System.Object[])
0031e268 79a0294c System.Reflection.RuntimeMethodInfo.Invoke(System.Object,
System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[],
System.Globalization.CultureInfo)
0031ecdc 01892552 [DebuggerU2MCatchHandlerFrame: 0031ecdc]
0031ecac 01892552 [GCFrame: 0031ecac]
0031ec90 01892552 [GCFrame: 0031ec90]
0031f3d8 01892552 [InlinedCallFrame: 0031f3d8]
0031f3d4 05043b34
DomainBoundILStubClass.IL_STUB_PInvoke(System.Windows.Interop.MSG ByRef)
0031f3d8 0502630d [InlinedCallFrame: 0031f3d8]
MS.Win32.UnsafeNativeMethods.DispatchMessage(System.Windows.Interop.MSG ByRef)
0031f40c 0502630d
System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
0031f458 05026009
System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame)
0031f464 0501cf2f System.Windows.Threading.Dispatcher.Run()
0031f474 56878bdf System.Windows.Application.RunDispatcher(System.Object)
0031f480 5687885f System.Windows.Application.RunInternal(System.Windows.Window)
0031f4a4 5687861a System.Windows.Application.Run(System.Windows.Window)
0031f4b4 063e0084 BibaApplication.App.Main()
0031f638 01892552 [GCFrame: 0031f638]
BibaSource Error: 2 : [1] 01/12/2021 16:35:44.393064: Failed to
InjectErrorHandlingScript,Unable to cast COM object of type
'System.__ComObject' to interface type 'mshtml.HTMLHeadElement'. This operation
failed because the QueryInterface call on the COM component for the interface
with IID '{3050F561-98B5-11CF-BB82-00AA00BDCE0B}' failed due to the following
error: Exception from HRESULT: 0x80004002 (E_NOINTERFACE).
--- snip ---
Relevant part of .NET app assembly, decompiled:
--- snip ---
...
public void onError(object arg1, object arg2, object arg3)
{
LogManager.Instance.LogError(string.Format("IdentityLoginView javascript
error: msg={0}, document={1}, lineNumber={2}", arg1, arg2, arg3));
}
private void InjectErrorHandlingScript()
{
string str = " function noError(errorMsg, document, lineNumber) \r\n
{\r\n
window.external.onError(errorMsg, document, lineNumber);\r\n
return true;\r\n
} \r\n\r\n
window.onerror = noError;";
HTMLDocument domDocument = (HTMLDocument)
this.myWebBrowser.Document.DomDocument;
if (domDocument == null)
return;
IHTMLScriptElement element = (IHTMLScriptElement)
domDocument.createElement("SCRIPT");
element.type = "text/javascript";
element.text = str;
foreach (DispHTMLHeadElement dispHtmlHeadElement in
domDocument.getElementsByTagName("head"))
dispHtmlHeadElement.appendChild((mshtml.IHTMLDOMNode) element);
}
private void WebBrowserNavigated(object sender, WebBrowserNavigatedEventArgs e)
{
try
{
this.InjectErrorHandlingScript();
}
catch (Exception ex)
{
LogManager.Instance.LogError("Failed to InjectErrorHandlingScript," +
ex.Message);
}
if (!(e.Url != (Uri) null))
return;
IEventManager instance = BibaApplication.Managers.EventManager.Instance;
WebBrowserNavigatedEvent message = new WebBrowserNavigatedEvent();
message.Url = e.Url.ToString();
message.DocText = this.myWebBrowser.DocumentText;
instance.Send<WebBrowserNavigatedEvent>(message);
}
...
--- snip ---
$ sha1sum Chime.4.28.9164.exe
505934bfaa22843788a880cdfd3bc04ece9a3728 Chime.4.28.9164.exe
$ du -sh Chime.4.28.9164.exe
53M Chime.4.28.9164.exe
$ wine --version
wine-6.0-rc6
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=50362
Bug ID: 50362
Summary: Fl Studio 20.8 crashes on startup
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: John.kinigos(a)gmail.com
Distribution: ---
Created attachment 68968
--> https://bugs.winehq.org/attachment.cgi?id=68968
The patch
After version 20.8 on all versions of wine Fl Studio Crashes on startup with a
list out of bounds error. After we did some debugging work on the Fl Studio
forum (Thanks Praash), we discovered that the error occurs exactly after the
program trying to use CompareString function with a flag that isn't supported
by wine (SORT_DIGITSASNUMBERS). I managed to make a patch (by adding that flag)
that made the program work and didn't break anything else. I already submitted
the patch at upstream but that admittedly wasn't the best course of action
cause I am not really a developer resulting to it being ignored. However the
patch works great and I even managed to make a small test for it. So my
question is: could we probably include this in wine-staging since it breaks one
of the biggest programs running in wine and affects a lot of users. Thank you
in advance
--
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=50725
Bug ID: 50725
Summary: FrameView needs tdh.dll.TdhLoadManifestFromBinary
Product: Wine
Version: 6.2
Hardware: x86-64
URL: https://images.nvidia.com/content/geforce/technologies
/frameview/FrameView_1.2.zip
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 69480
--> https://bugs.winehq.org/attachment.cgi?id=69480
log
winecfg # Windows 10
NVIDIA FrameView requires Windows 10 or later
Unhandled exception: unimplemented function tdh.dll.TdhLoadManifestFromBinary
called in 64-bit code (0x000000007b0117fd).
https://docs.microsoft.com/en-us/windows/win32/api/tdh/nf-tdh-tdhloadmanife…
FrameView_1.2.zip
sha1sum FrameView_1.2.zip
710c9ebfc5075dcd0553ee48b0f27cc522eef1ec FrameView_1.2.zip
du -sh FrameView_1.2.zip
60M FrameView_1.2.zip
--
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=48123
Bug ID: 48123
Summary: Word 97 crashes after calling stub
URLMoniker_ComposeWith
Product: Wine
Version: 4.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: urlmon
Assignee: wine-bugs(a)winehq.org
Reporter: magiblot(a)hotmail.com
Distribution: ---
Created attachment 65715
--> https://bugs.winehq.org/attachment.cgi?id=65715
Backtrace generated by the Wine debugger
This function is used by Word 97's Web browsing features. Clicking on an
hyperlink or using the Web toolbar triggers this function and the program
crashes shortly afterwards.
The following warnings are printed when clicking on an hyperlink:
> 002c:fixme:hlink:IHlinkBC_Register (00A9D9E0)->(0 009B02BC 00A9DA00 00986A3C)
> 002c:fixme:ole:ItemMonikerImpl_Construct lpszDelim is NULL. Using empty string which is possibly wrong.
> 002c:fixme:ole:ItemMonikerImpl_Construct lpszDelim is NULL. Using empty string which is possibly wrong.
> 002c:fixme:urlmon:URLMoniker_ComposeWith (009EA280)->(00A9E3C0,1,0032F0D8): stub
> wine: Unhandled page fault on read access to 00000000 at address 7E39398D (thread 002c), starting debugger...
I am not absolutely sure URLMoniker_ComposeWith is responsible for the crash,
but it is certainly suspicious. The crash actually happens in
CreateGenericComposite from ole32.
--
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=47296
Bug ID: 47296
Summary: just a crash in google grive
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: richardherist(a)outlook.com
Distribution: ---
Created attachment 64595
--> https://bugs.winehq.org/attachment.cgi?id=64595
what error stated
I installed drive and get this error before signing 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=50960
Bug ID: 50960
Summary: unimplemented function
api-ms-win-crt-stdio-l1-1-0.dll.__stdio_common_vfwprin
tf_p
Product: Wine
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: michele.dionisio(a)gmail.com
Distribution: ---
Hi,
I'm testing dotnet core application working under wine.
Everything works quite well except the intaller that is based on innosetup that
check if .netcore in installing using the next microsoft tools
// download netcorecheck.exe: https://go.microsoft.com/fwlink/?linkid=2135256
// download netcorecheck_x64.exe:
https://go.microsoft.com/fwlink/?linkid=2135504
I think the source code is:
https://github.com/dotnet/deployment-tools/tree/main/src/clickonce/native/p…
both crash if executed with:
wine netcorecheck_x64.exe Microsoft.NETCore.App 5.0.3
for an unimplemented function.
wine: Call from 000000007B01180E to unimplemented function
api-ms-win-crt-stdio-l1-1-0.dll.__stdio_common_vfwprintf_p, aborting
wine: Unimplemented function
api-ms-win-crt-stdio-l1-1-0.dll.__stdio_common_vfwprintf_p called at address
000000007B01180E (thread 0024), starting debugger...
00f8:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00f8:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0100:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0100:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
Unhandled exception: unimplemented function
api-ms-win-crt-stdio-l1-1-0.dll.__stdio_common_vfwprintf_p called in 64-bit
code (0x000000007b01180e).
Register dump:
rip:000000007b01180e rsp:000000000019f360 rbp:000000000019f650 eflags:00000206
( - -- I - -P- )
rax:000000000019f3a0 rbx:000000007b60e728 rcx:000000000019f380 rdx:00000000000
--
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=50811
Bug ID: 50811
Summary: Bad options passed to wrc, gdi32.res not created
Product: Wine-staging
Version: 6.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mike(a)cchtml.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
My 6.4 build of wine-staging is failing:
winegcc: File does not exist: dlls/gdi32/gdi32.res
make: *** [Makefile:53880: dlls/gdi32/gdi32.dll] Error 2
I traced the problem to "-pthread" being added to the wrc command.
tools/wrc/wrc -u -o dlls/gdi32/gdi32.res -m64 --nostdinc --po-dir=po
-Idlls/gdi32 -Iinclude -Iinclude/msvcrt \
-I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz
-I/usr/include/glib-2.0 \
-I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/libxml2
-D__WINESRC__ \
-pthread -D_GDI32_ -D_UCRT dlls/gdi32/gdi32.rc
...
<wrc usage output here>
...
tools/wrc/wrc: invalid option -- 'p'
tools/wrc/wrc: invalid option -- 't'
--
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=12457
Summary: SharpDevelop 2.2 crashes with NotImplementedException at
IWebBrowser2.get_LocationName()
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.icsharpcode.net/OpenSource/SD/Download/#Sharp
Develop22
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://lists.ximian.com/pipermail/mono-devel-list/2008-March/027227.html
was asking how to install SharpDevelop 2 under Wine, so I
gave it a try. "winetricks dotnet20" was enough to get it
to install and start, but after it put up the GUI, it
aborted with
fixme:shdocvw:WebBrowser_QueryInterface
(0x1af830)->({00000144-0000-0000-c000-000000000046} 0x33e800) interface not
supported
...
FATAL- System.NotImplementedException: The method or operation is not
implemented.
at System.Windows.Forms.UnsafeNativeMethods.IWebBrowser2.get_LocationName()
at System.Windows.Forms.WebBrowser.get_DocumentTitle()
--
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=51631
Bug ID: 51631
Summary: winhttp:winhttp fails because echo.websocket.org is
out of comission
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winhttp
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
winhttp:winhttp depends on echo.websocket.org for some test_head_request()
tests:
https://source.winehq.org/git/wine.git/?a=blob;f=dlls/winhttp/tests/winhttp…
However that server stopped responding on 2021-08-16 or 17, thus causing
failures:
winhttp.c:3314: Test failed: got 404
winhttp.c:3317: Test failed: got 4317
winhttp.c:3320: Test failed: got 6
...
http://winetest.dolphin/data/patterns.html#winhttp:winhttp
It is not yet known if echo.websocket.org will be back or when. If it does not
go back online we will need a replacement.
--
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=48412
Bug ID: 48412
Summary: Call of Duty: Modern Warfare 2 lighting issue and
textures blinking
Product: Wine
Version: 4.21
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: sagawa.aki+winebugs(a)gmail.com
Regression SHA1: 54edd5b220116febe704ecef8b3fb86621793ebe
Distribution: ---
Created attachment 66183
--> https://bugs.winehq.org/attachment.cgi?id=66183
screenshot
Blinking happens periodically.
--
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=29903
Bug #: 29903
Summary: Microsoft Visual Studio 2005: enumeration of processes
fails due to wtsapi32.WTSEnumerateProcessesW() being a
stub ( "attach to process" menu))
Product: Wine
Version: 1.4-rc3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
clicking "attach to process" menu item with default "local transport" leads to
an error message stating "Operation not supported. Unknown error: 0x8007000e".
The process list (listview) is empty due to WTSEnumerateProcessesW() API being
a stub.
Prerequisite: 'winetricks -q dotnet20 mfc42'
--- snip ---
...
0024:Call
wtsapi32.WTSEnumerateProcessesW(00000000,00000000,00000001,0032e828,0032e824)
ret=54bc508e
0024:fixme:wtsapi:WTSEnumerateProcessesW Stub (nil) 0x00000000 0x00000001
0x32e828 0x32e824
0024:Ret wtsapi32.WTSEnumerateProcessesW() retval=00000001 ret=54bc508e
0024:Call KERNEL32.GetProcAddress(7d910000,54cb3b3c "WTSFreeMemory")
ret=54bb97d2
0024:Ret KERNEL32.GetProcAddress() retval=7d914fc8 ret=54bb97d2
0024:Call wtsapi32.WTSFreeMemory(00000000) ret=54bc51b9
0024:fixme:wtsapi:WTSFreeMemory Stub (nil)
0024:Ret wtsapi32.WTSFreeMemory() retval=0000002b ret=54bc51b9
...
0024:Call oleaut32.SysAllocString(011722a8 L"Unable to connect to the Microsoft
Visual Studio Remote Debugging Monitor named 'nexus4'. Operation not
supported. Unknown error: 0x8007000e.") ret=54ba4f0c
...
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/windows/desktop/aa383831.aspx
Stub source:
http://source.winehq.org/git/wine.git/blob/fddbf3b99d6582c50ede10dfddd8d438…
--- snip ---
--- snip ---
105 BOOL WINAPI WTSEnumerateProcessesW(HANDLE hServer, DWORD Reserved, DWORD
Version,
106 PWTS_PROCESS_INFOW* ppProcessInfo, DWORD* pCount)
107 {
108 FIXME("Stub %p 0x%08x 0x%08x %p %p\n", hServer, Reserved, Version,
109 ppProcessInfo, pCount);
110
111 if (!ppProcessInfo || !pCount) return FALSE;
112
113 *pCount = 0;
114 *ppProcessInfo = NULL;
115
116 return TRUE;
117 }
--- snip ---
$ wine --version
wine-1.4-rc3-65-g98f0be8
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=19756
Summary: TaskCoach: Cannot add new task with a due date
Product: Wine
Version: 1.1.27
Platform: PC
URL: http://www.taskcoach.org/download.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jekwas(a)gmail.com
Created an attachment (id=23126)
--> (http://bugs.winehq.org/attachment.cgi?id=23126)
taskcoach.exe.log
I ran across this while testing for 8322. Task Coach is unable to add a new
task if a Due Date is specified.
To reproduce, click "New task" in the main window. Go to the Dates tab and add
a due date. Press OK, and nothing will happen. When you close Task Coach, it
will alert you of logged errors.
I have attached such a log. (Wine doesn't output with any problems when trying
to add a task)
--
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=49663
Bug ID: 49663
Summary: Performance regression in TrackMania Nations Forever
Product: Wine
Version: 5.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: phatboi1337(a)gmail.com
Regression SHA1: f02193738c88bea8fefb3f8d2e79c5e9941f6b5a
Distribution: ArchLinux
Hi there!
As of f02193738c88bea8fefb3f8d2e79c5e9941f6b5a, performance in TrackMania
Nations Forever has dropped from ~250 fps to ~72 fps on the A01-Race map.
The issue only seems to be present when DXVK is being used. WineD3D performance
seems to be unchanged, running at ~120 fps.
The game is available for free, either from Steam or the official website
(http://trackmaniaforever.com/nations/).
--
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=12076
Summary: Database app refused to install unless
system32/drivers/etc/{services,host} exist
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user's informix-based app refused to install until
the empty files c:/windows/system32/drivers/etc/{services,host}
were created, see
http://winehq.org/pipermail/wine-users/2008-March/030256.html
I looked around a bit for other system32/drivers/etc files.
http://support.microsoft.com/kb/130024 describes hosts, services, and protocols
http://support.microsoft.com/kb/105997 describes lmhosts
It looks like some apps find that directory by looking at
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\DataBasePath
and MSN Messenger 7.5 f*cks up by changing that variable's type, see
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6343068
Getting this all right would be a lot of work. Just creating
two empty files might be reasonable, though, since it
allows the user's app to install.
--
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=51076
Bug ID: 51076
Summary: demangle_datatype in ucrtbase crash in vc2019 x86 mode
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: nightwend(a)163.com
Distribution: ---
Created attachment 69939
--> https://bugs.winehq.org/attachment.cgi?id=69939
missed null check
demangle_datatype in ucrtbase crash in vc2019 x86 mode when compile some cpp
files
THe root cause is a missed null check.
--
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=50854
Bug ID: 50854
Summary: Elgato Stream Deck 4.9.3 (.NET 4.5 app) installer
reports 'This application is only supported on Windows
10 Anniversary Update (1511) or higher.'
('advapi32.dll' version must be >= 6.3.10000.0)
Product: Wine
Version: 6.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
continuation of bug 50849 with native .NET Framework 4.5 as workaround.
Even with Windows version set to 'Windows 10' the installer reports 'This
application is only supported on Windows 10 Anniversary Update (1511) or
higher.'. It uses version resource check.
--- snip ---
$ WINEDEBUG=+seh,+relay,+msi,+loaddll \
wine msiexec -i Stream_Deck_4.9.3.13222.msi >>log.txt 2>&1
...
0100:trace:msi:ITERATE_AppSearch L"WIN10FOUND" L"searchFile"
0100:trace:msi:get_signature package 0019C498, sig 0033F6C0
...
0100:trace:msi:get_signature Found file name L"advapi32.dll" for Signature_
L"searchFile";
0100:trace:msi:get_signature MinVersion is 6.3.10000.0
0100:trace:msi:get_signature MaxVersion is 0.0.0.0
0100:trace:msi:get_signature MinSize is 0, MaxSize is 0;
0100:trace:msi:get_signature Languages is (null)
...
0100:trace:msi:recurse_search_directory Searching directory
L"C:\\windows\\syswow64\\" for file L"advapi32.dll", depth 0
...
0100:Call version.GetFileVersionInfoW(0021ed98
L"C:\\windows\\syswow64\\advapi32.dll",00000000,000006c4,0021f588) ret=100338bb
...
0100:Ret version.GetFileVersionInfoW() retval=00000001 ret=100338bb
...
0100:Call version.VerQueryValueW(0021f588,1008b938 L"\\",0033eff0,0033efe0)
ret=10016227
...
0100:Ret version.VerQueryValueW() retval=00000001 ret=10016227
0100:trace:msi:file_version_matches comparing file version 5.1.2600.2180:
0100:trace:msi:file_version_matches less than minimum version 6.3.10000.0
01
...
0100:trace:msi:msi_get_property property L"WIN10FOUND" not found
...
0100:trace:msi:MSI_EvaluateConditionW 1 <- L"NOT WIN10FOUND"
...
0100:trace:msi:ACTION_PerformAction Performing action (L"NotWin10Error")
...
0100:trace:msi:ACTION_CustomAction Handling custom action L"NotWin10Error" (13
(null) L"This application is only supported on Windows 10 Anniversary Update
(1511) or higher.")
...
0100:Call user32.MessageBoxW(00000000,0021f9f0 L"This application is only
supported on Windows 10 Anniversary Update (1511) or
higher.",00000000,00000000) ret=100228bd
...
--- snip ---
Wine source:
https://source.winehq.org/git/wine.git/blob/d1764a45cfd12f8c5699fd7428cf90f…
--- snip ---
19 #define WINE_FILEDESCRIPTION_STR "Wine advapi32 dll"
20 #define WINE_FILENAME_STR "advapi32.dll"
21 #define WINE_FILEVERSION 5,1,2600,2180
22 #define WINE_FILEVERSION_STR "5.1.2600.2180"
23 #define WINE_PRODUCTVERSION 5,1,2600,2180
24 #define WINE_PRODUCTVERSION_STR "5.1.2600.2180"
--- snip ---
$ sha1sum Stream_Deck_4.9.3.13222.msi
d54a6df51519c5028eeb27b8f1a577d50a62e375 Stream_Deck_4.9.3.13222.msi
$ du -sh Stream_Deck_4.9.3.13222.msi
96M Stream_Deck_4.9.3.13222.msi
$ wine --version
wine-6.4
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=50829
Bug ID: 50829
Summary: Process Hacker 2.38 crashes on unimplemented function
dbghelp.dll.SymFromNameW
Product: Wine
Version: 6.4
Hardware: x86-64
URL: https://github.com/processhacker/processhacker/release
s/download/v2.38/processhacker-2.38-bin.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dbghelp
Assignee: wine-bugs(a)winehq.org
Reporter: the.ideals(a)gmail.com
Distribution: ---
1. Run ProcessHacker.exe
2. Select System information
3. Click on Memory graph to view more details
wine: Call from 000000007B01182D to unimplemented function
dbghelp.dll.SymFromNameW, aborting
https://github.com/processhacker/processhacker/search?q=SymFromNameWhttps://docs.microsoft.com/en-us/windows/win32/api/dbghelp/nf-dbghelp-symfr…
sha1sum processhacker-2.38-bin.zip
f9ae9036e657393599d3282dddda4ccbb33ae11b processhacker-2.38-bin.zip
du -sh processhacker-2.38-bin.zip
3.3M processhacker-2.38-bin.zip
--
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=50119
Bug ID: 50119
Summary: Dark Souls II: Scholar of the First Sin shows a white
screen with vulkan renderer
Product: Wine
Version: 5.21
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: ---
0580:err:d3d:wined3d_swapchain_vk_blit Present returned vr
VK_ERROR_OUT_OF_DATE_KHR.
0580:err:d3d:wined3d_swapchain_vk_destroy_vulkan_swapchain Failed to wait on
queue, vr VK_ERROR_DEVICE_LOST.
and lots of:
0580:err:d3d:wined3d_context_vk_submit_command_buffer Failed to submit command
buffer 0x7f7fbc1b0e28, vr VK_ERROR_DEVICE_LOST.
wine-5.21-69-gb940c5e7c91
--
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=48507
Bug ID: 48507
Summary: osu! icons in the setting and music player are not
being rendered
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: huupoke12(a)gmail.com
Distribution: ---
Created attachment 66308
--> https://bugs.winehq.org/attachment.cgi?id=66308
Icons in the setting and the music player are not being drawn/rendered
Icons in the setting and the music player are not being drawn/rendered. I can
still click on the setting and it jumps to that section. But I can't click on
the music player (nothing happen).
--
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=46817
Bug ID: 46817
Summary: Steam Big Picture needs
d3d11_device_CreateDeviceContextState
Product: Wine
Version: 4.2
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Split from bug 44120.
Big picture currently errors with
> Assertion Failed: No D2D device created, possible no GPU supporting D3D10_FEATURE_LEVEL_9_1 or higher was found? Can't create surface
The problem is fixed by adding a stub like
##########
static HRESULT STDMETHODCALLTYPE d3d11_device_CreateDeviceContextState(...)
{
*chosen_feature_level = feature_levels[0];
return S_OK;
}
##########
This makes big picture mode open, but you still have a blackscreen due to
missing d3d10 effects support. But judging from the sounds, it atleast works
instead of 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=51041
Bug ID: 51041
Summary: Wine does not enumerate all fonts
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: vladimir.kokovic(a)gmail.com
Distribution: ---
I have regularly installed 3 TTF fonts for my needs and when I wanted to use
them, I saw wine not offer all 3 but only one of them.
As all 3 are necessary, to determine what it is about, I wrote the test program
that uses EnumFontFamiliesExW.
The problem is probably the fact that 2 fonts that are not displayed in the
font list, that they are OpenType fonts.
The result of that program in Windows10:
Terminal vk INSTALLED.
Less Perfect DOS VGA INSTALLED.
More Perfect DOS VGA INSTALLED.
The result of that program in Wine:
Terminal vk INSTALLED.
Less Perfect DOS VGA NOT INSTALLED.
More Perfect DOS VGA NOT INSTALLED.
If necessary, I will also provide the test program and fonts.
Vladimir Koković, DP senior(70),
Serbia, Belgrade, 22.April 2021
--
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=50952
Bug ID: 50952
Summary: Regression: Legends of Runeterra crashes at launch
Product: Wine
Version: 5.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: dt(a)zeroitlab.com
Distribution: ---
Continuing from #47970
This is probably related to hooking of LdrInitializeThunk or other thread start
related logic. I'll try to investigate.
Regressed since 5.10
According to a previous bisect by Daniel Bomar, first bad commit is
be0eb9c92eb7a4fcd9d0d48568c8ed5e8326ef0b: ntdll: Move the thread startup code
to the Unix library
--
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=50628
Bug ID: 50628
Summary: Fairy Tale About Father Frost, Ivan and Nastya crashes
on DDERR_SURFACE_LOST
Product: Wine
Version: 6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: x17roqnft(a)relay.firefox.com
Distribution: ---
Created attachment 69326
--> https://bugs.winehq.org/attachment.cgi?id=69326
Terminal output
Steps to reproduce:
1) Download demo version from here:
https://bonusweb.idnes.cz/Download.aspx?id=D001222_952141
2) Install it
3) Run main exe with wine (mrazik.exe)
4) Starts, but crashes with different error message based on set wine prefix
On Windows 7 and higher, it first yells about DDERR_SURFACE_LOST, but after
next start, it changes to engine error CPSE: Stream open file failed (Unknown
HRESULT).
On Windows XP and lower, it just yells about CPSE: Stream open file failed.
(Unknown HRESULT)
This also happens on Steam version with Proton.
Tried virtual desktop and new 32bit prefix, same error.
Maybe it's just game engine being poorly written for newer systems.
Note: Windows 10 machines requires to have compatibility mode set to Windows 98
or 95 to avoid in-game 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=35539
Bug ID: 35539
Summary: Proteus 8 demo fails to install
Product: Wine
Version: 1.7.11
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Classification: Unclassified
Hello folks,
split off from bug 34457
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+msi wine ./prodemo.exe >>log.txt 2>&1
...
0037:trace:msi:ACTION_PerformUIAction Performing action
(L"WriteEnvironmentStrings")
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 100 L"Action 13:24:18:
WriteEnvironmentStrings. Updating environment strings"
...
0037:trace:msi:MSI_DatabaseOpenViewW L"SELECT * FROM `Environment`" 0x33f7e8
...
0037:trace:msi:ITERATE_WriteEnvironmentString name L"!-*LXKSERVER" value (null)
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 200 L"Name: LXKSERVER,
Value: , Action 0"
...
0037:trace:msi:ITERATE_WriteEnvironmentString name L"=-*LXKSERVER" value
L"[KEY_SERVER]"
...
0037:trace:msi:MSI_FormatRecordW L"[KEY_SERVER]"
...
0037:trace:msi:msi_get_property property L"KEY_SERVER" not found
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 200 L"Name: LXKSERVER,
Value: , Action 0"
...
0037:trace:msi:MSI_ProcessMessage (nil) (nil) (nil) 0 10 L"Action ended
13:24:18: WriteEnvironmentStrings. Return value 14."
...
0037:err:msi:ITERATE_Actions Execution halted, action
L"WriteEnvironmentStrings" returned 14
--- snip ---
"Environment" msi table dump with ORCA:
--- snip ---
Environment Name Value Component_
s72 l255 L255 s72
LXKSERVER !-*LXKSERVER APPFRAME.DLL
LXKSERVER_1 =-*LXKSERVER [KEY_SERVER] APPFRAME.DLL
--- snip ---
The first one has no value -> skipped (ok).
The second one has a value and is getting deformatted ... unfortunately
'KEY_SERVER' property is not set at this point, resulting in failure.
I found only one occurrence of this property 'KEY_SERVER' in msi tables:
"Control" msi table:
--- snip ---
KeyServerDlg Edit_1 Edit 101 112 125 18 3 KEY_SERVER
{260} Bitmap
--- snip ---
The unattended install using explicit command line property works, see:
http://www.softnual.com/html/pds/network-installation.htm
--- quote ---
Where a server license and dongle are installed the KEY_SERVER property can be
set on the command line to point to the licence key server. If set this will
set the environment variable, if not set the variable will be cleared.
--- quote ---
If I pass the property via command line it finishes successfully:
--- snip ---
$ wine msiexec -i setup_demo8.1.17358.0.msi KEY_SERVER=test
...
$ fixme:wshom:WshShell3_RegWrite
(L"HKLM\\SYSTEM\\CurrentControlSet\\Control\\Session
Manager\\Environment\\LXKSERVER" {VT_BSTR: L"test"} {vt 10}): stub
--- snip ---
For UI install, the 'KeyServerDlg' is referenced from 'LicenseKeyTypeDlg' which
is referenced from 'LicenseAgreementDlg':
--- snip ---
LicenseAgreementDlg Back NewDialog WelcomeDlg AI_INSTALL AND
LicenseAgreementDlg_Cond 1
LicenseAgreementDlg Next NewDialog SetupTypeDlg AI_INSTALL AND
LicenseAgreementDlg_Cond 3
LicenseAgreementDlg Next NewDialog LicenseKeyTypeDlgAI_INSTALL
AND LicenseAgreementDlg_Cond AND LicenseKeyTypeDlg_Cond 4
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] 1 Family <>
"Demonstration" 2
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] {} 1 1
LicenseAgreementDlg Cancel SpawnDialog CancelDlg 1 100
LicenseAgreementDlg PrintButton DoAction AI_PrintRtf 1 2
LicenseAgreementDlg PrintButton [AI_PRINT_RTF]
LicenseAgreementDlg#AgreementText 1 1
--- snip ---
'SetupTypeDlg' is selected for 'next' button instead of 'LicenseKeyTypeDlg':
--- snip ---
0037:trace:msi:msi_set_property 0x1437c0 L"LicenseAgreementDlg_Cond" L"1" -1
...
0037:trace:msi:MSI_EvaluateConditionW 1 <- L"AI_INSTALL AND
LicenseAgreementDlg_Cond"
...
0037:trace:msi:msi_dialog_send_event Sending control event L"NewDialog"
L"LicenseAgreementDlg"
...
0037:trace:msi:MSI_EvaluateConditionW L"AI_INSTALL AND LicenseAgreementDlg_Cond
AND LicenseKeyTypeDlg_Cond"
...
0037:trace:msi:msi_get_property returning L"1" for property L"AI_INSTALL"
...
0037:trace:msi:msi_get_property returning L"1" for property
L"LicenseAgreementDlg_Cond"
...
0037:trace:msi:msi_get_property property L"LicenseKeyTypeDlg_Cond" not found
...
0037:trace:msi:MSI_EvaluateConditionW 0 <- L"AI_INSTALL AND
LicenseAgreementDlg_Cond AND LicenseKeyTypeDlg_Cond"
...
0037:trace:msi:MSI_EvaluateConditionW 1 <- L"AI_INSTALL AND
LicenseAgreementDlg_Cond"
0037:trace:msi:msi_dialog_send_event Sending control event L"NewDialog"
L"SetupTypeDlg"
--- snip ---
'LicenseKeyTypeDlg_Cond' is tied to control 'Event':
--- snip ---
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] 1 Family <>
"Demonstration" 2
LicenseAgreementDlg Next [LicenseKeyTypeDlg_Cond] {} 1 1
--- snip ---
The event condition:
--- snip ---
0037:trace:msi:MSI_DatabaseOpenViewW L"SELECT * FROM ControlEvent WHERE
`Dialog_` = 'LicenseAgreementDlg' AND `Control_` = 'Next' ORDER BY `Ordering`"
0x33f240
...
0037:trace:msi:MSI_EvaluateConditionW L"1"
...
0037:trace:msi:COND_GetString Got identifier L"1"
...
0037:trace:msi:MSI_EvaluateConditionW 1 <- L"1"
...
0037:trace:msi:msi_set_property 0x1437c0 L"LicenseKeyTypeDlg_Cond" (null) -1
...
0037:trace:msi:msi_get_property property L"LicenseKeyTypeDlg_Cond" not found
0037:trace:msi:MSI_DatabaseOpenViewW L"DELETE FROM `_Property` WHERE
`_Property` = 'LicenseKeyTypeDlg_Cond'" 0x33f11c
...
0037:trace:msi:MSI_EvaluateConditionW L"Family <> \"Demonstration\""
...
0037:trace:msi:COND_GetString Got identifier L"Family"
...
0037:trace:msi:msi_get_property returning (null) for property L"Family"
...
0037:trace:msi:msi_get_property returning L"Demonstration" for property
L"Family"
...
0037:trace:msi:COND_GetLiteral Got literal L"Demonstration"
...
0037:trace:msi:MSI_EvaluateConditionW 0 <- L"Family <> \"Demonstration\""
...
--- snip ---
'Family' property is hard coded by default to 'Demonstration' value.
Makes sense for demo app/installer.
Summing it up: at first glance everything looks ok.
Maybe it's another MSI client vs. server issue.
$ sha1sum prodemo.exe
e3409adbc80bd73a36f82890da2b7d16be2fbf51 prodemo.exe
$ du -sh prodemo.exe
166M prodemo.exe
$ wine --version
wine-1.7.11-306-g8f289c8
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=50875
Bug ID: 50875
Summary: HTMLElement_get_offsetParent crashes wine if a NULL
offset parent is expected (VbsEdit)
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: dimaki(a)rocketmail.com
Distribution: ---
This issue effects an html help file which ships with VbsEdit.
The body html element has a NULL offset parent. Attempting to retrieve it
causes a null dereference crash in wine, but not in IE on Windows. Here is
sample html code to reproduce the problem. In IE clicking the button produces
no result while wine crashes.
<!DOCTYPE html>
<html>
<body>
<p>Click the button to get the offsetParent for the body tag.</p>
<p><button onclick="testFunction()">Click</button></p>
<script>
function testFunction() {
document.body.offsetParent;
}
</script>
</body>
</html>
I have a patch with a fix which I will send in shortly.
--
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=36010
Bug ID: 36010
Summary: Changing font resolution on winecfg changes default
main font to Tahoma
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jbopen(a)gmail.com
Changing the value of font resolution under "Desktop" (winecfg) the system.reg
changes the value "MS Shell Dlg" to the original "Tahoma".
--
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=32749
Bug #: 32749
Summary: Implement atl100.dll.AtlAxDialogBoxW to show error
dialogs (Visual Studio 2010 (10.0) Express Edition)
Product: Wine
Version: 1.5.21
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
continuation of bug 32564 (Visual Studio 2010 (10.0) Express Edition needs
atl100.dll.AtlAxDialogBoxW).
Although it's stubbed for now it might be useful to load and show the dialog
resource.
--- snip ---
0009:fixme:atl:AtlAxDialogBoxW (0x401f0000 #00cc 0x2008a 0x401b589f 0)
--- snip ---
The user doesn't know what happened in this case.
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=51324
Bug ID: 51324
Summary: Imperium Great Battles of Rome can't play videos
Product: Wine
Version: 5.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lorenzofer(a)live.it
Distribution: ArchLinux
Imerium GBR can't play videos anymore (either the intro video of the campaign
videos) from wine 5.16 onwards (current master or wine 6.11).
It do instead work on wine 5.15 albeit with some slight lag or glitches.
This is with a fully clean prefix.
Will do a regression test as soon as possible
--
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=50168
Bug ID: 50168
Summary: Error when running notepad.exe: Failed to start RpcSs
service
Product: Wine
Version: 5.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)lv.net.nz
Distribution: ---
When I run `wine notepad.exe` from my `~/.wine/drive_c/windows` I get the
following error:
0060:err:ole:start_rpcss Failed to start RpcSs service
I am running Debian 10 on x86_64, and have installed winehq-devel from the
winehq repository. I've also tried using winehq-staging. I'm using a fresh
~/.wine.
The same error shows up on explorer.exe.
Interestingly, the error disappears if I run and then quit explorer.exe:
explorer.exe crashes on exit (wine: Unhandled page fault on read access to
0000000000000000 at address 0000000000409FC7 (thread 00d0)) and leaves
wineserver and a couple of winedevice.exe processes running. Happy to provide
more info on the explorer.exe crash if that helps.
--
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=44813
Bug ID: 44813
Summary: Some applications fail when calling ntdll.NtReadFile
on a directory (expect STATUS_INVALID_DEVICE_REQUEST)
Product: Wine
Version: 3.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
to track
https://github.com/wine-staging/wine-staging/tree/master/patches/ntdll-Stat…
Unfortunately there is little information/details, I just found this:
https://wine-staging.com/news/2015-10-04-release-1.7.52.html
--- quote ---
Return STATUS_INVALID_DEVICE_REQUEST when trying to call NtReadFile on
directory (Wine Staging Bug #571)
--- quote ---
Sadly no applications are mentioned.
Some info here:
https://stackoverflow.com/questions/42662363/createfile-on-directory-in-ntf…
--- quote ---
file system drivers (ntfs also) always return error code on IRP_MJ_READ request
for directory file. usually STATUS_INVALID_DEVICE_REQUEST or
STATUS_INVALID_PARAMETER
--- quote ---
https://www.osronline.com/showthread.cfm?link=169533 ("ZwQueryDirectoryFile
failed with error STATUS_INVALID_DEVICE_REQUEST")
https://msdn.microsoft.com/en-us/library/cc232128.aspx ("[MS-FSCC]: File System
Control Codes")
$ wine --version
wine-3.4-
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=51928
Bug ID: 51928
Summary: Security cookie in read-only section causes crash on
startup
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: vrbuckle(a)synthtools.co.uk
Distribution: ---
After some point, PE binaries are allowed to have the security cookie in a
read-only section.
set_security_cookie does not handle this and segfaults trying to write to
read-only memory.
Example binary: .NET Native compiler 2.2.x :
https://www.nuget.org/api/v2/package/runtime.win10-x64.Microsoft.Net.Native…
this is a zip file, the faulting binary is at tools/x64/ilc/ilc.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=33118
Bug #: 33118
Summary: Adding bin.base64 attribute causes duplicate datatype
attribute
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Classification: Unclassified
The following psedocode is causing duplicate xmlns to appear on a node.
node->Create Attribute (_T("xmlns:dt"),
_T("urn:schemas-microsoft-com:datatypes"));
node->Put Data Type(_T("bin.base64"));
node->Put Node TypedValue("DATA");
Do you get a node that looks like the following.
<UML:TaggedValue xmlns:dt="urn:schemas-microsoft-com:datatypes"
xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="bin.base64" >...
--
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=51908
Bug ID: 51908
Summary: Make evdev joystick axis mapping customizable.
Product: Wine
Version: 6.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: rbernon(a)codeweavers.com
Distribution: ---
The legacy dinput joystick backends previously supported some custom mapping
from the registry, and it's now gone.
SDL supports axis mapping customization through its game controller mapping
(although it then exposes an abstracted game controller device), and hidraw and
iokit are just raw pass-through backends, but Wine evdev axis to HID usage
mapping could be made customizable to better support exotic or bogus joysticks.
--
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=51907
Bug ID: 51907
Summary: ddraw games don't work in xwayland
Product: Wine
Version: 6.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ewtoombs(a)uwaterloo.ca
Distribution: ---
So far, I've tested Age of Empires II: The Conquerors 1.0c and Starcraft
Broodwar 1161. They both fail with the same error message:
```
0024:err:ddraw:ddraw_surface_create Failed to reset device.
```
Both games work fine in the standalone Xorg server. Neither works, whether I
use weston or sway.
Experimentally, I've determined that the games work in 5.13 and break in 5.14,
so I guess the bug was introduced in version 5.14.
--
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=16666
Summary: wine segfaults on launch
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: critical
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=18290)
--> (http://bugs.winehq.org/attachment.cgi?id=18290)
core dump
Now for the biggest bug :-)
Wine segfaults on launch of any program. Even 'wine --version' crashes.
I've got this patch in place (from openbsd's port):
diff --git a/loader/pthread.c b/loader/pthread.c
index 4c0c892..e7f6479 100644
--- a/loader/pthread.c
+++ b/loader/pthread.c
@@ -96,6 +96,12 @@ static void init_thread( struct wine_pthread_thread_info
*info )
/* if base is too large assume it's the top of the stack instead */
if ((char *)info->stack_base > &dummy)
info->stack_base = (char *)info->stack_base - info->stack_size;
+#elif defined(__OpenBSD__)
+ stack_t stack;
+ if (pthread_stackseg_np(pthread_self(), &stack) != 0)
+ abort ();
+ info->stack_base = (char *)stack.ss_sp - stack.ss_size;
+ info->stack_size = stack.ss_size;
#else
/* assume that the stack allocation is page aligned */
char dummy;
@@ -163,6 +169,8 @@ static void init_current_teb( struct
wine_pthread_thread_info *info )
info->pid = getpid();
#ifdef __sun
info->tid = pthread_self(); /* this should return the lwp id on solaris
*/
+#elif defined(__OpenBSD__)
+ info->tid = pthread_self();
#elif defined(__APPLE__)
info->tid = mach_thread_self();
#elif defined(__FreeBSD__)
Though, it still segfaults without it.
wine-pthread.core 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=42269
Bug ID: 42269
Summary: There is no fonts in the menu S.T.A.L.K.E.R.: Shadow
of Chernobyl
Product: Wine
Version: 2.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: negry.mischa(a)yandex.ru
Distribution: ---
Created attachment 56970
--> https://bugs.winehq.org/attachment.cgi?id=56970
A screenshot of the problem
When you start the game there is no fonts in the menu, same problem in Tropico
5, but in STALKER are the wine versions 1.9.17-1.9.23. And the workspace of
STALKER, as seen in the screenshot is limited
--
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=50758
Bug ID: 50758
Summary: Vbscript does not handle recursive calls
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: bunglehead(a)gmail.com
Distribution: ---
Test with postgresql-9.3 installer from [1]. It runs a script during
installation that reports non-critical error to main install, script itself
terminates.
Reduced test case for this looks like this:
---
function recursingfunction(x)
if (x) then exit function
call recursingfunction(True)
end function
call recursingfunction(False)
---
That leads to the following fixme, exactly that happens with the installer:
---
0024:fixme:vbscript:variant_call unsupported on 006BF6F0 {VT_EMPTY}
---
[1] https://www.enterprisedb.com/postgresql-tutorial-resources-training?cid=340
--
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=30600
Bug #: 30600
Summary: Emergency 3 crash with page fault on read access to
0x00000000 in 32-bit code (0x100ac010)
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linuxcobra(a)gmx.de
Classification: Unclassified
Created attachment 40041
--> http://bugs.winehq.org/attachment.cgi?id=40041
Backtrace-output
when i install this Game under wine, the install works, but when i will start
the game, will not work.
via original Windows XP / ME ( both tested) : no problems
--
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=51871
Bug ID: 51871
Summary: PSScript fails with 0x80041002 (WBEM_E_NOT_FOUND) (
system property L"__Derivation" not implemented)
Product: Wine
Version: 6.19
Hardware: x86-64
URL: https://www.powershellgallery.com/packages/Traverse/0.
6/Content/Private%5CGet-WMICustom.ps1
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: wmi&wbemprox
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Hi,
I`d like to make powershell script from the URL to work in wine in Powershell
7.
(Background: Powershell 7 doesn`t have Get-WMIObject and GetCIMInstance doesn`t
work; if the above script works it`s simple to just write an own simple
Get-WMIObject which is for example used by chocolatey to retrieve some
properties from win32_operatingsystem)
Output from running script in psconsole:
Out-Default: The following exception occurred while retrieving the type name
hierarchy: "Error code: 0x80041002".
In the console:
07f0:fixme:wbemprox:get_system_propval system property L"__Derivation" not
implemented
Actually it turns out that returning complete stub for "__Derivation" is
enough to make the script enough work for my purpose
I now use hack below, and that`s enough to fix this bug for me, but I guess
it`s not ok enough for inclusion in wine. So if someone could write proper stub
or advise howto improve patch that would be great
diff --git a/dlls/wbemprox/query.c b/dlls/wbemprox/query.c
index 77ed27e105d..b253f19a6ed 100644
--- a/dlls/wbemprox/query.c
+++ b/dlls/wbemprox/query.c
@@ -1006,6 +1006,13 @@ static HRESULT get_system_propval( const struct view
*view, UINT table_index, UI
if (type) *type = CIM_STRING;
return S_OK;
}
+ if (!wcsicmp( name, L"__DERIVATION" ))
+ {
+ if (ret)
+ V_VT( ret ) = VT_BSTR | VT_ARRAY;
+ if (type) *type = CIM_STRING | VT_ARRAY;
+ return S_OK;
+ }
FIXME("system property %s not implemented\n", debugstr_w(name));
return WBEM_E_NOT_FOUND;
}
diff --git a/dlls/wbemprox/tests/query.c b/dlls/wbemprox/tests/query.c
index 69bb8e7977e..9bb8d559b06 100644
--- a/dlls/wbemprox/tests/query.c
+++ b/dlls/wbemprox/tests/query.c
@@ -1642,6 +1642,7 @@ static void test_Win32_VideoController( IWbemServices
*services )
if (hr != S_OK) break;
check_property( obj, L"__CLASS", VT_BSTR, CIM_STRING );
+ check_property( obj, L"__DERIVATION", VT_BSTR | VT_ARRAY, CIM_STRING |
CIM_FLAG_ARRAY);
check_property( obj, L"__GENUS", VT_I4, CIM_SINT32 );
check_property( obj, L"__NAMESPACE", VT_BSTR, CIM_STRING );
check_property( obj, L"__PATH", VT_BSTR, CIM_STRING );
--
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=42137
Bug ID: 42137
Summary: DirectInput needs to join both Xbox shoulder triggers
into a single axis (aka half-axis problem)
Product: Wine
Version: 1.6.1
Hardware: x86
OS: Linux
Status: NEW
Keywords: hardware
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
CC: aric(a)codeweavers.com
Distribution: ---
When MS introduced the Xbox controller into dinput it had the idea of joining
both Xbox controller shoulder triggers into a single axis. So the left trigger
ranges to the negative side while the right trigger to the positive side of the
same axis.
Wine currently exposes the triggers are separate axes Z and rZ, this affects
some games negatively because the not-pressed default values for the triggers
is the lowest possible, for example if the axis ranges from -100 to +100 Wine
exposes -100 to the application. The effect is that the application thinks the
axis is always pressed and weird things happen, eg auto selecting Z/rZ as every
button when configuring a joystick or wrongly selecting Z/rZ as rX/rY making
FPS players always look up or down.
I don't know if this happens only for Xbox controllers but I believe so. I'll
have the chance to test with a real PS3 controller soon.
If that is MS only, we need to find a way to distinguish the joysticks
(VID/PID?) and merge the axes to mimic MS behavior.
At the same time and in opposite direction the XInput API does not employ this
hack, since XInput was made for Xbox only controllers it will properly report
the values for the axes separately.
--
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=41700
Bug ID: 41700
Summary: "Install Now" and "Customize installation" buttons are
invisible in Python 3.5 installer
Product: Wine
Version: 1.9.23
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
The "Install Now" and "Customize installation" buttons do not appear on either
the regular Python 3.5 installer or the Python 3.5 web installer, not even if
you hover the mouse over the buttons or press the tab key repeatedly. However,
the installation continues if you click where the button should be, and the tab
key appears to move focus onto and off of the buttons even though there is no
visual feedback.
Note that you must set the Windows version to Windows Vista or later in winecfg
or the installer will only show you an error message.
$ sha1sum python-3.5.2.exe
3873deb137833a724be8932e3ce659f93741c20b python-3.5.2.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=51902
Bug ID: 51902
Summary: Project CARS 2 keyboard keys aren't responsive
Product: Wine
Version: 6.19
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: rbernon(a)codeweavers.com
Regression SHA1: 71ecc179aab7ad103e06b52ea76ae1f1e25b3d3b
Distribution: ---
Reverting helps.
--
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=51846
Bug ID: 51846
Summary: Standard library call fopen(..., "wx") not recognized
- causes destruction of data
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: ted(a)lyncon.se
Distribution: ---
Created attachment 70740
--> https://bugs.winehq.org/attachment.cgi?id=70740
open_excl.cpp
wine-6.16 (Staging)
When running a program that uses the standard (since C11 and C++17) fopen()
mode "wx" to guarantee that opening a file for writing fails if it already
exists, I noticed that wine can't handle that mode. Instead, it prints
"0104:err:msvcrt:msvcrt_get_flags incorrect mode flag: x" and successfully
opens the file - even if it already exists - which destroys the content of the
existing file.
I'm attaching the source code to a small C++17 program that works as expected
when compiled with Visual Studio 2019 (/std:c++17) and running it on Windows 10
natively.
--
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=51707
Bug ID: 51707
Summary: Rise of the Tomb Raider stops the process before
entering the main menu
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: hverbeet(a)gmail.com
Regression SHA1: 126f0e6ed3119fdeb71b87ac7e3ab22a589dbd0e
Distribution: ---
Reverting helps.
--
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=51385
Bug ID: 51385
Summary: DTS Encoder Suite won't start in Wine 6.0.1
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: shagooserver(a)gmail.com
Distribution: ---
Upon running DTS encoder the following message is returned:
Unable to access jarfile DTSEncoder.jar
Some further investigation involving starting other pieces of the program first
produced this message when attempting to start DTSEncoder.jar:
Error: 3 - socket server failed to start
Jobqueue exit runCtrlThread
I am using the Timebomb fix (where the program just fails after 1/1/21 or
thereabouts) using a new/modified DtsJobQueue.exe file and has been working
perfectly all this year under wine version 5 stable.
I am using Java jre-6u45-windows-i586.exe
Host system is Kubuntu 21.04.
--
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=41317
Bug ID: 41317
Summary: WOLF RPG Editor (Game.exe): Arrow keys don't work
properly when gamepad is connected
Product: Wine
Version: 1.9.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: kakurasan(a)gmail.com
Regression SHA1: c126b21a34be008534e4fbd2a0f8bb8ea08c6c2b
Distribution: ---
Created attachment 55651
--> https://bugs.winehq.org/attachment.cgi?id=55651
Input test program which uses DX Library (source)
When gamepad is connected, the cursor or character moves automatically and
arrow keys doesn't work properly.
Workaround: Disable all gamepads using joy.cpl, or use native dinput.dll
Note: WOLF RPG Editor uses a DirectX wrapper library called "DX Library" (open
source).
Downloads (Japanese):
* WOLF RPG Editor: http://www.silversecond.com/WolfRPGEditor/Download.html
* DX Library: http://dxlib.o.oo7.jp/
----- Result of regression testing -----
c126b21a34be008534e4fbd2a0f8bb8ea08c6c2b is the first bad commit
commit c126b21a34be008534e4fbd2a0f8bb8ea08c6c2b
Author: Andrew Nguyen <anguyen(a)codeweavers.com>
Date: Tue Jul 5 07:19:17 2011 -0500
dinput: Extract the DirectInput instance creation and initialization in
DirectInputCreateEx to separate functions.
:040000 040000 f904caf8d290195557d1c2733d12288d8b4f9cf4
02e3e0e5a1ad1ee2fbb02e91bb09f093766c0e0e M dlls
--
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=51797
Bug ID: 51797
Summary: Input lag with controller in Wine 6.18
Product: Wine
Version: 6.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lemonzest(a)gmail.com
Distribution: ---
Hiya
I am noticing quiet noticeable controller input lag with Wine 6.18
I have tried many games (Foregone/Dead Cells/Shantae Half Genie Hero/Mighty
Switch Force Collection/Tales of Zestiria) and they all behave the same.
Analog controls are responsive but face buttons and directional pad are lagged
or missed, I'm talking like 1-2 seconds!
I have tried wine control joy.cpl and the tests are fine, analog fast and
buttons/dpad are instant, it is only in games where I am experiencing this
lagged input.
I am using a PDP Afterglow Wired Xbox One Controller and prior to this was fast
and responsive (tho was a hiccup with Wine 6.17)
Thank you for your help
--
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=49887
Bug ID: 49887
Summary: "EA Desktop" installer fails.
Product: Wine
Version: 5.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dereklesho52(a)Gmail.com
Distribution: ---
I spent some time looking into why this fails, and there's a couple of
problems.
1) The installer text fails to display, so you can't see what it's telling you
during installation, for instance how windows 7 (at-least SP1) is unsupported.
2) After a few seconds of installing the installer silently exits, this is due
to a custom action with the function name "InitializeSession" fails, with a
different return code every time. Maybe it relies on stack memory being zeroed
out, I'm not sure.
3) Treating the action failure as a success gets us a bit further, they start
their service, which seems to crash during initialization. I'm looking at this
now.
--
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=47387
Bug ID: 47387
Summary: Victor Vran has no sound
Product: Wine
Version: 4.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: lemonzest(a)gmail.com
Distribution: ---
Hiya
I have the GOG version of Victor Vran, I installed the windows version in both
Wine and Wine Staging versions 4.9/4.10 on Fedora 30 amd64 in both 32bit and
64bit prefixes and none have sound of any kind, I get the following in the logs
for that game
XAudio2Create failed: 800401f0
Any other logs needed just ask.
Many thanks
Lemonzest
--
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=51105
Bug ID: 51105
Summary: Diablo 2: Resurrected (D2R) stays black
Product: Wine
Version: 6.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blue-t(a)web.de
Distribution: ---
Created attachment 69969
--> https://bugs.winehq.org/attachment.cgi?id=69969
Log Without Proton
The modernised Diablo2 Resurrected version does not show any graphics apart
from a small rendered mouse cursor.
You hear the sound and music being played in the background though.
It also doesn't immediately hang up and crash but you don't see either the menu
nor the game world.
I tried with 6.7-staging , once without and once with the proton 2.2 d3d12 dll
installed to figure out where the problem is.
The only difference is in the logoutput on the terminal, but they both fail to
show the game.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.