https://bugs.winehq.org/show_bug.cgi?id=43820
Bug ID: 43820
Summary: Provide packages for Ubuntu Artful 17.10
Product: Packaging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: derekbga(a)gmail.com
CC: michael(a)fds-team.de, sebastian(a)fds-team.de
Distribution: ---
Ubuntu 17.10 Artful Aardvark is currently in its final beta phase, before its
release on 2017-10-19. It would be helpful to provide packages for this
version, especially before the release date. At
https://dl.winehq.org/wine-builds/ubuntu/dists/ I don't see a folder for
artful.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43833
Bug ID: 43833
Summary: FATAL ERROR: wglCreateContextAttribsARB failed in
Wolfenstein: The New Order
Product: Wine
Version: 2.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: katoflip(a)protonmail.com
Distribution: ---
Whenver I try to start up Wolfenstein: TNO I get this message.
https://ghostbin.com/paste/eyrvx
Let me know what other information I can provide.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44698
Bug ID: 44698
Summary: Offworld Trading Company net functionality not working
Product: Wine
Version: 3.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: muesli4(a)gmail.com
Distribution: ---
Created attachment 60710
--> https://bugs.winehq.org/attachment.cgi?id=60710
Very verbose output.
The net functionality of "Offworld Trading Company" (Steam version) does not
work.
I ran Steam with the following command:
WINEDEBUG=err+all,warn+all,fixme+all wine Steam.exe -no-cef-sandbox
The net service is called Tachyon. I looked for "tachyon" in the output and it
somehow fails to load the dll (but file exists).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38172
Bug ID: 38172
Summary: Smite: Hi-Rez Studios Authenticate and Update Service
fails
Product: Wine
Version: 1.7.37
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
Assignee: wine-bugs(a)winehq.org
Reporter: fincer89(a)hotmail.com
Distribution: ---
Created attachment 50922
--> https://bugs.winehq.org/attachment.cgi?id=50922
Smite - installer (InstallSmite.exe) terminal output
The game is not installable due to this issue. The Hi-Rez Studios Update
Service tries to open itself but instead, throws bunch of ole errors in
terminal and fails.
Short terminal output as an attachment.
Long ole backtrace uploaded on dropbox (Wine Bugzilla file size limit
exceeded):
https://www.dropbox.com/s/a56idpskq5hw550/wine_smite_oledebug?dl=1
Windows mode: Win7
Fresh 32-bit wineprefix
winetricks vcrun2008 (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=45351
Bug ID: 45351
Summary: Leisure Suit Larry: Magna Cum Laude version 1.0 and
GOG crash at startup
Product: Wine
Version: 3.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: alexterranova81(a)gmail.com
Distribution: ---
Created attachment 61644
--> https://bugs.winehq.org/attachment.cgi?id=61644
Crash Report
"Leisure Suit Larry: Magna Cum Laude" crashes at startup in both the 1.0 and
GOG version.
OS: Linux Mint 18.3 KDE x64 / Wine 3.10 (Using recommended graphics drivers)
Hardware:
CPU: AMD
RAM: 8GB
GPU: GeForce 750 GTX
HDD: 500GB
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40969
Bug ID: 40969
Summary: Wine: DLL Injection on suspended process provides NULL
arg for static library's DLLMain's lpvReserved value
Product: Wine
Version: 1.9.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aheinerm(a)gmail.com
Distribution: ---
WINE does not respect the behaviour of the lpvReserved argument in DLLMain.
>From the documentation of DllMain
(https://msdn.microsoft.com/en-us/library/windows/desktop/ms682583(v=vs.85).…)
~~~
lpvReserved [in]
If fdwReason is DLL_PROCESS_ATTACH, lpvReserved is NULL for dynamic loads
and non-NULL for static loads.
If fdwReason is DLL_PROCESS_DETACH, lpvReserved is NULL if FreeLibrary has
been called or the DLL load failed and non-NULL if the process is terminating.
~~~~
WINE does NOT respect this behaviour.
# EXAMPLE
Given the following:
A.exe, B.dll, C.dll
C.dll is statically linked from both A.exe and B.dll.
A.exe's process is started and suspended.
B.dll is injected into the A.exe process.
At some point the DllMain of C.dll is called. In WINE, the lpvReserved argument
is NULL, even though C.dll is statically loaded. In Windows 7, 8, and 10, the
lpvReserved argument is non-null.
# REAL WORLD IMPACT
https://github.com/bwapi/bwapi/issues/598https://bugs.winehq.org/show_bug.cgi?id=40259
Blizzard Entertainment's Storm.dll library uses the lpvReserved to invoke a
different behaviour in its DllMain (why, I have no idea). Their video game
Starcraft: Broodwar is statically linked to this library. The third-party hack
DLL called BWAPI.dll is also statically linked to Storm.dll. The Hack launcher
called ChaosLauncher starts and suspends the Starcraft process and injects
various hacks (one being BWAPI). The error in the tracking issue above is
surfaced.
The issue surfaced because Storm performs some alternative initialization logic
that corrupts its ability to function correctly later. In order to temporarily
work around the issue I have forcefully undone the logic made in the other DLL
to cause it to malfunction.
In this case the executable and statically linked library are owned by a
company and their source codes are not available. It should be possible to
reproduce the issue in a more trivial example.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.