https://bugs.winehq.org/show_bug.cgi?id=56619
Bug ID: 56619
Summary: Waves Central crashing at startup
Product: Wine
Version: 9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Kirschi94(a)gmx.net
Distribution: ---
I think I've had this bug since around 8.21, but since I only now came around
to recreating and filing it I put it in version 9.7.
I successfully installed Waves Central (an application to install VST plugins
bought from Waves), but whenever I try to start it, an error
("Waves-Output-a.log", "Waves Error-a.png") happens. Since I tried to write the
output of the terminal directly into a file and the first time kinda didn't
work ("waves-wine-pre.log"), while the second time actually produced a
different error ("Waves-Output-b.log", "Waves Error-b.png"), I thought I should
give you all the logs I got.
Error-a says a log file has been created but I haven't yet found it. I'll add
it as an attachment as soon as I find it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50553
Bug ID: 50553
Summary: SetEnvironmentVariableW function sets last error on
deleting non-existent variable
Product: Wine
Version: 6.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: topin89(a)mail.ru
Distribution: ---
This code
```
//gcc test.c -o test.exe && ./test.exe
#include <windows.h>
#include <stdio.h>
int main(int argc, char *argv[]){
BOOL result;
result = SetEnvironmentVariableW(L"PERL5LIB", NULL);
printf("result: %u, last error: %d\n", result, GetLastError());
SetLastError(0);
result = SetEnvironmentVariableW(L"PERL5LIB", "SomeValue");
printf("result: %u, last error: %d\n", result, GetLastError());
SetLastError(0);
result = SetEnvironmentVariableW(L"PERL5LIB", NULL);
printf("result: %u, last error: %d\n", result, GetLastError());
SetLastError(0);
result = SetEnvironmentVariableW(L"PERL5LIB", NULL);
printf("result: %u, last error: %d\n", result, GetLastError());
SetLastError(0);
return 0;
}
```
compiled with Mingw-w64 gcc
and running from command line and MSYS console gives this in Windows 10:
```
result: 1, last error: 0
result: 1, last error: 0
result: 1, last error: 0
result: 1, last error: 0
```
and this in Kubuntu 20.04.1 with winehq-staging 6.0:
```
<snip fixmes>
result: 0, last error: 203
result: 1, last error: 0
result: 1, last error: 0
result: 0, last error: 203
```
Error 203 is ERROR_ENVVAR_NOT_FOUND, btw. So, in Win 10 deleting already
deleted environmental variable doesn't lead to error, in Wine it is.
This alone prevents git.exe (and probably many more apps) to work correctly. In
file git-for-windows-repo/compat/mingw.c
there is this function,
```
int mingw_putenv(const char *namevalue)
{
int size;
wchar_t *wide, *equal;
BOOL result;
if (!namevalue || !*namevalue)
return 0;
size = strlen(namevalue) * 2 + 1;
wide = calloc(size, sizeof(wchar_t));
if (!wide)
die("Out of memory, (tried to allocate %u wchar_t's)", size);
xutftowcs(wide, namevalue, size);
equal = wcschr(wide, L'=');
if (!equal)
result = SetEnvironmentVariableW(wide, NULL);
else {
*equal = L'\0';
result = SetEnvironmentVariableW(wide, equal + 1);
}
free(wide);
if (!result)
errno = err_win_to_posix(GetLastError());
return result ? 0 : -1;
}
```
This line :
```
result = SetEnvironmentVariableW(wide, NULL);
```
sets error on removing non-existent `PERL5LIB` and that leads to result == 0
which in turn leads to premature exit in `err_win_to_posix(GetLastError())`.
In this particular case, for some reason last error sets to 0 instead of 203.
Another bug probably, I'll report it later.
--
Do not reply 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=13198
Summary: Microsoft Pinball Arcade black/blank window in 24bpp
mode
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vanessaezekowitz(a)gmail.com
Created an attachment (id=13030)
--> (http://bugs.winehq.org/attachment.cgi?id=13030)
Screenshot of real 8bpp mode
Microsoft Pinball Arcade (commercial/full version) doesn't work properly in
WINE if you're using a regular, standard-issue 24bpp X session. Intro/menu
screens work, but the 3D content (direct3d? ddraw?) just produces a black
screen.
Steps to reproduce:
0. Obtain a copy of the game (maybe the demo version will do?). cd into your
'drive c' directory and start the game: `wine Program\ Files/Microsoft\
Games/Pinball\ Arcade/Launcher.exe`
1. A movie displays showing a closeup of one of the game's tables.
2. Click on the movie to interrupt it. The title screen appears and looks
fine.
3. Click again, table select menu appears and waits for input.
4. Click on any menu item at the bottom of the window - a dialog related to it
appears as it should.
5. Double-click on one of the tables - the table selection screen gets blacked
out, the window resizes, and the table's loading screen appears all in the same
instant - without repainting the window - the loading screen only painted on
the parts of the window that were already black. So we have a window half
filled with the loading screen and half transparent, showing this browser and
the controlling terminal through it.
6. The loading screen disappears and the window turns solid black. A windows
pointer appears. On the console, the "Cannot change screen BPP" line appears.
7. Clicking around eventually causes the pointer to disappear, probably because
I managed to trigger the insert-coin hot spot followed by the "1 player"
hotspot, thus starting the actual game. Hitting Esc is supposed to bring up a
graphical exit/no-exit dialog, but nothing appears. Blindly hitting "y" puts
me back at the table-select screen as it should. So the actual game is
accepting input, it just isn't showing me anything.
7a. If I try another table, I get the exact same result, including another
"Cannot change screen BPP" line on the console.
8. Double-click the table-select menu's internal Exit button and Wine drops
back to my shell after a couple of seconds.
Actual Results:
Described above - I get a black window instead of a game table.
Expected Results:
Wine should have displayed the table properly and let me play the game.
Notes:
In order to run this game properly, the user *must* have a true 8bpp mode
with StaticColor visual defined in their xorg.conf, and the user *must*
manually run a second, separate X screen (e.g. one accessible with Ctrl-Alt-F8)
in that more with that visual.
Desipte having a known, tested, working 8bpp mode in xorg.conf, Xorg does not
have any kind of ability to switch away from the currently-running depth to
some other mode (e.g. it cannot and never will be able to drop from 24bpp to
8bpp), and is not expected to ever have such a feature. Furthermore, some
users' hardware does not have the ability to run in true 8bpp mode at all, so
this game simply *will not work* on those systems.
ply does not work on some hardware, despite having correct software settings.
The attached screenshot shows what the game looks like in reap 8bpp
"StaticColor" mode, using twm as a window manager (it looks the same without a
window manager).
Versions affected:
All WINE versions from roughly 0.9.31 through the current 1.0 rc1 release.
--
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=33270
Bug #: 33270
Summary: Cursor disappears during Installshield install
Product: Wine
Version: 1.5.26
Platform: x86-64
URL: http://www.oldversion.com/download/quicktime70238.exe
OS/Version: Linux
Status: NEW
Keywords: download, integration
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 44009
--> http://bugs.winehq.org/attachment.cgi?id=44009
Wine 1.5.26 +cursor trace
With certain applications (QuickTime 7.02.38, SlingPlayer 1.3) the mouse
pointer disappears. It reappears when the installation is complete (or at
random intervals).
--
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=55736
Bug ID: 55736
Summary: Solid Edge crashes after a couple of minutes
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: luca.finizio(a)protonmail.com
Distribution: ---
Created attachment 75230
--> https://bugs.winehq.org/attachment.cgi?id=75230
Terminal output - Wine 8.17
I tried to launch Solid Edge 2023 Community Edition
(https://resources.sw.siemens.com/en-US/download-solid-edge-community-edition)
and it does, but crashes after a couple of minutes; the crash seems to be
independent from what I do and click.
In order to reproduce, just download and install the software, then start it,
try to create a new part file, and then simply wait for the application to
crash.
A attach both backtrace and terminal output.
I'm using LMDE 6, kernel 6.1, on Lenovo V15-G2, with Wine 8.17.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56472
Bug ID: 56472
Summary: Recettear opening movie blackscreen in Wine 9.5
Product: Wine
Version: 9.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: tomman(a)gmail.com
Distribution: ---
Recettear (an always lovely and troublesome game under Wine) now exhibits a
interesting regression on Wine 9.5: the opening movie (recet_op.wmv) no longer
shows video other than a blackscreen, but audio plays fine. This is on a
completely stock Wine prefix, where said game had flawless video playback until
Wine 9.4.
Apparently this comes after the bunch of video rendering changes between 9.4
and 9.5. The only way for having the opening movie working properly on this
game under Wine was by not using native Windows DLLs at all - that is, a stock
Wine profile and gstreamer-libav (using applicable native DLLs in any
combination will either break audio in the game, cause choppy movie playback,
or outright crash the game)
As suggested via #winehq on IRC, I made a debug log with +quartz,+d3d,+seh -
it's ~540MB uncompressed despite just logging the normal sequence that leads to
the OP movie playing (run the game, wait a bit on the titlescreen, then the
movie will come up). Since even compressed it's ~15MB, I can't attach it here,
so I'm hosting it on my personal website instead:
https://mi.tsdx.net.ve/temp/recet_broken_opmov_w95.log.xz
The most relevant parts from the log seem to be broken/missing colorspace
conversions, with lots of the following logged even on a regular,
non-debug-channel log:
0024:fixme:d3d:wined3d_get_format Can't find format unrecognized (0x30323449)
in the format lookup table.
0024:fixme:d3d:debug_d3dformat Unrecognized 0x56555941 (as fourcc: AYUV)
WINED3DFORMAT!
0024:fixme:d3d:wined3d_get_format Can't find format unrecognized (0x56555941)
in the format lookup table.
0024:fixme:d3d:debug_d3dformat Unrecognized 0x56555941 (as fourcc: AYUV)
WINED3DFORMAT!
...
0148:fixme:d3d:surface_convert_format Cannot find a conversion function from
format WINED3DFMT_YV12 to WINED3DFMT_B8G8R8X8_UNORM.
0148:fixme:d3d:surface_cpu_blt Cannot convert WINED3DFMT_YV12 to
WINED3DFMT_B8G8R8X8_UNORM.
0148:err:d3d:cpu_blitter_blit Failed to blit.
and eventually, when exiting the game:
014c:err:quartz:image_presenter_PresentImage Failed to blit, hr 0x88760096.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37885
Bug ID: 37885
Summary: Battle.net launcher fails to set permissions on WoW
files
Product: Wine
Version: 1.7.31
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adys.wh(a)gmail.com
Distribution: ---
Symptoms: The Battle.net launcher always gives an "Update" button for WoW after
every time World of Warcraft is closed. This doesn't seem to affect other
games.
Looking in the logs, it seems to constantly be related to file
permissions/attributes. It's hard to track it down exactly, but here are some
log extracts:
19:08:01.5787 Executing operation: fix_file_attributes
filePath="Z:/home/adys/.local/games/Blizzard/World of
Warcraft/Data/data/0a00000016.idx" fileAttributes=32
19:08:01.5790 Executing operation: fix_file_attributes
filePath="Z:/home/adys/.local/games/Blizzard/World of
Warcraft/Data/data/0c00000015.idx" fileAttributes=32
<snip>
18:03:30.8038 AgentAsAdmin failed to set the file attributes of
'Z:/home/adys/.local/games/Blizzard/World of
Warcraft/Data/data/0e00000016.idx'.
18:03:30.8050 Agent failed to get the file info of
'Z:/home/adys/.local/games/Blizzard/World of
Warcraft/Data/data/0700000015.idx'.
No relevant WINEDEBUG output (and really hard to get because the launcher
actually forks when started)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=51361
Bug ID: 51361
Summary: SimSig with Wine 6.11 breaks after upgrading from
libxml2 2.9.10 to 2.9.12
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: bugs(a)chead.ca
Distribution: ---
Launching the SimSig launcher with Wine 6.11 and libxml2 2.9.10 works fine.
After upgrading to libxml2 2.9.12, the software no longer works properly, and
the following shows up in the console output:
0104:fixme:wininet:InternetSetOptionW
INTERNET_OPTION_SEND/RECEIVE_TIMEOUT/DATA_SEND_TIMEOUT 5000
0024:fixme:ieframe:PersistStreamInit_Load (002B8CD8)->(002B2130)
0024:fixme:ieframe:PersistStreamInit_InitNew (0028C590)
0024:err:ole:apartment_add_dll couldn't load in-process dll
L"C:\\windows\\system32\\msxml3.dll"
0024:err:ole:create_server class {f5078f32-c551-11d3-89b9-0000f81fe221} not
registered
0024:err:ole:com_get_class_object no class object
{f5078f32-c551-11d3-89b9-0000f81fe221} could be created for context 0x5
0024:err:module:find_forwarded_export module not found for forward
'msxml3.DllGetClassObject' used by L"C:\\windows\\system32\\msxml2.dll"
0024:err:ole:apartment_add_dll couldn't find function DllGetClassObject in
L"C:\\windows\\system32\\msxml2.dll"
0024:err:ole:create_server class {f5078f1b-c551-11d3-89b9-0000f81fe221} not
registered
0024:err:ole:com_get_class_object no class object
{f5078f1b-c551-11d3-89b9-0000f81fe221} could be created for context 0x5
0024:err:module:find_forwarded_export module not found for forward
'msxml3.DllGetClassObject' used by L"C:\\windows\\system32\\msxml.dll"
0024:err:ole:apartment_add_dll couldn't find function DllGetClassObject in
L"C:\\windows\\system32\\msxml.dll"
0024:err:ole:create_server class {2933bf90-7b36-11d2-b20e-00c04f983e60} not
registered
0024:err:ole:com_get_class_object no class object
{2933bf90-7b36-11d2-b20e-00c04f983e60} could be created for context 0x5
There is a lot more output, but it is either benign messages that also appear
with 2.9.10, or else repeats of the same messages.
I have recompiled Wine after installing the new libxml2, but that did not make
any difference; the problem still occurs.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56324
Bug ID: 56324
Summary: Falcon BMS launcher fails to start (native .Net 4.6.1
needed)
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: xeno(a)x-s.com.pl
Distribution: ---
Created attachment 76056
--> https://bugs.winehq.org/attachment.cgi?id=76056
Interrnal log of the launcher.
Falcon 4 BMS new default launcher crashes at startup due to unimplemented
functions of DotNet 4.6.1 with error message:
System.Windows.Markup.XamlParseException
The invocation of the constructor on type
'FalconBMS.Launcher.Windows.MainWindow' that matches the specified binding
constraints threw an exception
Steps to reproduce (in fresh Win64 bit prefix):
- install original Falcon 4 (needed by Falcon BMS installer to proceed due
legal agreement)
- install Falcon BMS 4.37 with without optional DirectX installation (here
Falcon BMS 4.37.3 full installer was used)
- launch Falcon Alternative Launcher (new default) binary
env
WINEPREFIX="/home/<your_user>/.local/share/wineprefixes/<your_prefix_name>"
wine <path_to_BMS-dir>/Launcher/FalconBMS_Alternative_Launcher.exe
Expected result:
Launcher windows opens up with no error messagex.
Actual result:
Instead of Launcher there's error message window displayed. Launcher error is
stuck and has to be terminated manually.
Extra notes:
Known workaround: installing native .Net 4.6.* runtime makes Launcher work
fine, with small visual issues (see bug: #55850)
Alternative Launcher project page on github:
https://github.com/chihirobelmo/FalconBMS-Alternative-Launcher
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56581
Bug ID: 56581
Summary: Corsiar iCUE 4: Crash on launch (Unimplemented
function SHAssocEnumHandlersForProtocolByApplication)
Product: Wine
Version: 8.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
Distribution: ---
Created attachment 76335
--> https://bugs.winehq.org/attachment.cgi?id=76335
Backtrace of the iCUE 4 crash
See attached backtrace 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.