https://bugs.winehq.org/show_bug.cgi?id=47862
Bug ID: 47862
Summary: Art of Murder - Cards of Destiny main character and
NPCs have texture corruption
Product: Wine
Version: 4.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 65367
--> https://bugs.winehq.org/attachment.cgi?id=65367
screenshot
Continuation of bug 24983
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42979
Bug ID: 42979
Summary: Age of Empires hangs for several seconds between
screens when CSMT is enabled
Product: Wine
Version: 2.7
Hardware: x86-64
URL: https://web.archive.org/web/20011206135758/http://mssj
us.www.conxion.com:80/download/aoe/trial/1.0/win98/en-
us/msaoe.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
Distribution: Debian
Created attachment 58110
--> https://bugs.winehq.org/attachment.cgi?id=58110
good log
To reproduce create a new Windows 98 prefix and install and run the game. There
are 2 company logo screens and then there is the menu, when CSMT=1 each logo
screen takes seconds and before the menu is clickable there are several seconds
too.
I'm attaching 2 logs for the same operations (skip the company logos, click
single player and random map). The good log is 8Mb uncompressed, the bad log is
around 250mb. The logs were collected with
+d3d7,+d3d8,+d3d9,+d3d,+timestamp,+tid, if such logs are pointless I can take
any other by request.
Tested on Intel HD graphics 520 with mesa 13.0.5.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43497
Bug ID: 43497
Summary: Grandia II Anniversary Edition - Black screen
Product: Wine
Version: 2.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: betaversiondot(a)gmail.com
Distribution: Debian
Created attachment 58877
--> https://bugs.winehq.org/attachment.cgi?id=58877
terminal output
Intro movies are not played and when i press Enter to skip them, game shows
only black screen, though i can hear menu sounds.
--
Do not reply 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=32174
Bug #: 32174
Summary: Applicaton crashes after paste of the clipboard
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: development+wine(a)decotrain.homedns.org
Classification: Unclassified
Created attachment 42448
--> http://bugs.winehq.org/attachment.cgi?id=42448
Backtrace of the crash.
This seems to be a special problem with a special content in the clipboard.
The crash can be invoked with this steps:
1. Look at an jpg with Irfanview 4.33 that has EXIF-Data.
2. Type I for Info of the picture.
3. Then click on Exif-Data.
4. Now click on "copy to clipboard" - that's working.
5. Go into the text of a new mail in Thunderbird in Linux.
6. Press CTRL-V for paste and Irfanview crashes!
When you are doing this with the Kate Text-Editor it will not crash but has no
content, but with another Text-Editor like geany it also crashes.
Interesting is to paste in Free-Office, then it takes some time and then you
get after the crash the message that the wanted format for the clipboard is not
available.
There are really strange things with the clipboard ...
--
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=47395
Bug ID: 47395
Summary: bug 44255 revisited: app fall into critical section
lock upon quiting
Product: Wine
Version: 4.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galtgendo(a)o2.pl
Distribution: ---
I'm not quite sure when it happened, but I think it was between 4.8 and 4.10.
The symptoms are pretty much the same as in bug 44255: start the app, try to
quit the app, get a perma-lock.
Yet, this time it doesn't seem to be quartz, as native override doesn't help.
Also, while I've tried to follow Focht's procedure from the former bug, I
couldn't get a thread calling to RtlpWaitForCriticalSection...
Though that might be just a shortcoming of winedbg - not supporting separate
compressed debug sections.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47782
Bug ID: 47782
Summary: Segmentation fault and exceptions using
ManagementClass
Product: Wine
Version: 4.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dridi.boukelmoune(a)gmail.com
Distribution: ---
Originally reported on Fedora's bugzilla for Wine 4.12 (Fedora includes
wine-staging) and still happening with Wine 4.15, I'm now throwing the towel as
I failed to debug this by myself. I'm interested in commit hashes if a fix is
merged, and general pointers on how to deal with this in the future. For
example I couldn't get a full back trace when building the master branch and
never managed to print arguments up the stack with WineDbg.
https://bugzilla.redhat.com/show_bug.cgi?id=1734794
I can reliably reproduce the C# exceptions and the segfault on my system
(either using Fedora packages or building the master branch with or without
wine-staging):
$ cat test.cs
using System;
using System.Management;
class Test {
static void Main(string[] args) {
ManagementClass mc = new ManagementClass(args[0]);
ManagementObjectCollection moc = mc.GetInstances();
foreach (ManagementObject mo in moc) {
Console.Write("{0}\n", mo);
foreach (PropertyData pd in mo.Properties)
Console.Write("\t{0} => {1}\n", pd.Name,
pd.Value);
}
moc.Dispose();
mc.Dispose();
}
}
$ mcs /reference:System.Management.dll test.cs
$ ./test.exe Win32_OperatingSystem # OK
$ ./test.exe Win32_PhysicalMemory # OK
$ ./test.exe Win32_SoundDevice # OK
$ ./test.exe Win32_Processor # System.InvalidCastException
$ ./test.exe Win32_VideoController # System.InvalidCastException
$ ./test.exe Win32_DesktopMonitor # System.InvalidCastException
$ ./test.exe Win32_DisplayControllerConfiguration # SIGSEGV
The problem on the current master branch is the same as when I first reported
the segfault to Fedora, except that things moved around a bit:
0x0000000067753b3e build_relpath+0x37 [dlls\wbemprox\query.c:866] in wbemprox:
movq (%rax),%rax
866 struct table *table = view->table[table_index];
Again, view->table is null when test.exe is run with
Win32_DisplayControllerConfiguration, and for other paths the results are the
same (no regression nor improvement).
Obviously my testing is not comprehensive, there may be other problematic
management paths but those are the ones I came across. I will happily test
patches if requested.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47813
Bug ID: 47813
Summary: Itch.io: Warning or error when launching a game
(GetFileInformationByHandleEx for FileAttributeTagInfo
unimplemented)
Product: Wine
Version: 4.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: theristhewolf(a)gmail.com
Distribution: ---
The Windows version of the Itch.io desktop app (which can be downloaded as
itch-windows-amd64.zip from https://fasterthanlime.itch.io/itch ) generates a
warning message such as the following when launching most titles:
"An error occurred while launching [APP]. The message we got was: While doing
auto prereqs: GetFileInformationByHandleEx
[BINARY_LOCATION_IN_VIRTUAL_C_DRIVE]: Call not implemented."
With these titles, the game can be launched normally by clicking the "Continue"
button. However, with at least one Itch game (and, presumably, any Itch game
that only works if launched via the Itch client), the error message instead
reads as follows:
"An error occurred while launching [APP]. GetFileInformationByHandleEx
[BINARY_LOCATION_IN_VIRTUAL_C_DRIVE]: Call not implemented."
In this case, there is no "Continue" button to click (the bottom right corner
of the window instead has an "OK" button, which dismisses the message and
proceeds to a Itch bug submission window if a checkbox is enabled, as well as
an "Open folder in explorer" button).
This issue was originally reported as a bug for the Itch desktop client (see
https://github.com/itchio/itch/issues/2324 ), and a developer for that project
has stated that the described behavior occurs due to Wine's partial
implementation of the GetFileInformationByHandleEx function (specifically, for
the case when the class passed into the function is FileAttributeTagInfo).
Since this is the function call that Go generates when compiling an os.Stat
function call performed on a file returned by os.Open, the responding Itch
developer expressed a preference for the missing functionality in Wine to be
implemented due to this issue's potential impact on other Windows applications
that were written in Go. To that end, said developer has generated a short Go
code snippet (viewable at
https://gist.github.com/fasterthanlime/ec8177b114fa9f711d90b95b49a0e236 ) that
tests the os.Stat and os.Open functions.
This issue has been originally produced in Lutris's variant of Wine version
4.12.1-x86_64. I have attempted to reproduce the issue on a system-wide
install of Wine 4.16 (as installed on Linux Mint 19.1 via the winehq-devel
package), but I have not been able to get the Itch client's window to display
anything other than a blank black box when running Itch this way (presumably,
there's either a mistake that I've been overlooking, a setup step that Lutris
does that I'm missing, a workaround that Lutris does that I'm not aware of, or
a bugfix in Lutris's flavor of Wine that isn't mainlined).
I'm hoping, due to the specificity of the bug's identification and the
verification of the fact that GetFileInformationByHandle remains a stub in the
main Wine project's master branch, that the lack of reproduction in the
development version of vanilla Wine will be tolerated for this report. If not,
I can continue trying to flail at my efforts to reproduce the bug without the
use of Lutris.
--
Do not reply 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=35585
Bug ID: 35585
Summary: Castlevania: Lords of Shadow 2 demo endless loading
screen without native d3dx9_36
Product: Wine
Version: unspecified
Hardware: x86
URL: http://store.steampowered.com/app/239250
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
Created attachment 47513
--> http://bugs.winehq.org/attachment.cgi?id=47513
+d3dx+seh+tid
Without native d3dx9_36 game shows endless loading screen with hourglass.
Tested on Wine 1.7.12-57-gf4985e4
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47192
Bug ID: 47192
Summary: Halo 2: PS4 controller no longer registers inputs
Product: Wine
Version: 4.8
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: danielbr(a)live.no
I have previously used Wine staging 4.6 and 4.7 with Halo 2. With the latest
4.8 update i can no longer use the controllers buttons, which works flawlessly
in Dolphin and Retroarch anymore. I have not configured the controller in any
way, just connecting it by bluetooth or wired as always.
This occurs on Macos 10.14.4.
Halo 2 can be freely installed here: https://www.cartographer.online/
Wine also cuts off sound after the intro which hopefully someone can look into.
I have Halo installed as a 64 bit 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.
http://bugs.winehq.org/show_bug.cgi?id=33848
Bug #: 33848
Summary: InstallShield fails to install any files on NTFS /
FAT32 partitions, while others can...
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tesfabpel(a)gmail.com
Classification: Unclassified
When you install a software that uses InstallShield (like Crysis, No One Lives
Forever 2, Myth 3 :P) on a NTFS / FAT32 partition, it fails the installation
right away with this error:
Access Denied
Other setup software like NSIS are able to install on those partitions (like
Notepad++)...
This bug is veeeery old (bug [17776])
---
Quote from bug [17776]:
Specfically -- and this is a guess -- I think stat() is returning different
values for files not yet committed to disk. IShield sees this, and assumes it's
being silently denied access to certain features when in fact what it wanted
actually happened, it's just being hidden due to this bug.
---
The solution then should be (IMHO) to implement a wrapper for the equivalent of
stat() in Windows that takes into account these differences and returns what
Windows' apps expect to get...
I set the bug's severity as major and not normal because it makes Wine fail
at "Emulating" Windows (yeah, I know, WINE Is not an Emulator :P) with a so
important setup software like InstallShield...
BTW shouldn't then the bug be related to IS?
Maybe, but anyway this denotes a difference in behaviour with Windows that I
think should be solved...
Anyway these are only my opinions... :)
--
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=35223
Bug ID: 35223
Summary: King's Bounty Crossworlds crashes in the new campaign
when entering the sea tower on the first island
Product: Wine
Version: 1.7.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: i30817(a)gmail.com
Classification: Unclassified
As in the title. The error window it presents is:
".\BMRender\rmode.cpp(4050): DirectX call failed: 1, 1, D3ERR_INVALIDCALL (The
method call is invalid. For example, a method's parameter may not be a valid
pointer)"
This game already had crashes when loading levels or combat (probably) due to
the implemented messages wine emits with it:
"fixme:d3dx:D3DXCreateTextureFromFileInMemoryEx Generation of mipmaps for
compressed pixel formats is not implemented yet"
These could be worked around by setting texture quality to minimum (on the
Gallium 0.4 radeon driver). This error can't be worked around with that as far
as i can tell. A similar, but different (different line number, -1 instead of
1) error on windows, apparently has a workaround of disabling vsync but that
doesn't work in this case.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44540
Bug ID: 44540
Summary: Imperium GBR terminate unexpectly when using native
quartz.dll
Product: Wine
Version: 3.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: lorenzofer(a)live.it
Distribution: ---
Created attachment 60497
--> https://bugs.winehq.org/attachment.cgi?id=60497
log with dsound setted as native
Imperium GBR terminate unexpectly (without crash), with exit code -127 when
using native quartz.dll (from directmusic winetricks component)
The beheviour change if I have dsound setted as builtin or native.
If dsound is setted as builtin the game exit after the resolution change,
before playing the videos.
If dsound is setted as native the game play the videos and then terminate
before entering the main menu.
For playing music in the game it need dsound,dmime,dmsynth,dmusic,dswave as
native (this issue happens in the described ways if the mentioned dll (other
then dsound) are setted as builtin or native)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39013
Bug ID: 39013
Summary: Cannot change the location of the folder put in
/tmp/.wine-uid
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sstewartgallus00(a)mylangara.bc.ca
Distribution: ---
I want to set /tmp on my machine to be only readable and writeable by root and
I cannot use Wine with that configuration unless I can change that folder.
Also, only allowing the static folder in /tmp opens up a denial-of-service
attack against other users. A user can be a jerk and create /tmp/.wine-uid
directories to block other users.
--
Do not reply 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=35522
Bug ID: 35522
Summary: Send a test to testbot using 1 page instead of 3
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
Classification: Unclassified
Currently it is:
1. Select a file to send
2. Select the VMs
3. Select additional flags (command line arguments, whether to run 64-bit
tests, debug level, report successful tests)
One option would be to merge all 3 pages into 1. Another possibility is to
add option "Use defaults" and activate it by default to skip 2 and 3 pages
using default settings (which in most cases nobody cares about).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=8051
trymeout(a)tutanota.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |trymeout(a)tutanota.com
--- Comment #172 from trymeout(a)tutanota.com ---
Created attachment 65434
--> https://bugs.winehq.org/attachment.cgi?id=65434
log
Still occurs in Wine 4.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.
http://bugs.winehq.org/show_bug.cgi?id=31788
Bug #: 31788
Summary: Run the tests in Wine on Mac OS X
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
Just like it would be useful to run the test in Wine on Linux and FreeBSD (see
bug 31787), it would be useful to run them on Mac OS X.
However whereas setting up a Linux VM is easy, doing so with Mac OS X seems to
be much trickier, both technically and due to the EULA. In particular it may
require running the VM on real Apple hardware (so no rack mounting for this
one?). There's also the question about whether this would make for a meaningful
test system.
So if we exclude VMs, this bring us back to getting tests to run on real
hardware (bug 31786).
--
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=31785
Bug #: 31785
Summary: Add more languages and locales to the core tests
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
With recent versions of Windows there is:
* The Display Language which decides what language the GUI is in.
* The Locale which decides most everything else: date and number format,
sorting, etc.
Wine's conformance tests are impacted by both of these settings and it's often
interesting to have non-matching settings to spot issues: tests impacted by the
locale must be skipped based on the locale, not on the display language.
The old Wine TestBot ran the tests on VMs with a couple of different languages
and locales but there's a desire to expand this list. In particular testing
some right-to-left and non-latin languages and with some indic scripts would 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=35312
Bug ID: 35312
Summary: "Toggle All" currently means "Inverse Selection"
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
Classification: Unclassified
When selecting VMs the button "Toggle All" actually inverses the current
selection.
function ToggleAll()
{
for (var i = 0; i < document.forms[0].elements.length; i++)
{
if(document.forms[0].elements[i].type == 'checkbox')
document.forms[0].elements[i].checked =
!(document.forms[0].elements[i].checked);
}
}
A possible solution:
var toggledstate = true;
function ToggleAll()
{
toggledstate = !toggledstate;
for (var i = 0; i < document.forms[0].elements.length; i++)
{
if(document.forms[0].elements[i].type == 'checkbox')
document.forms[0].elements[i].checked = toggledstate;
}
}
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47928
Bug ID: 47928
Summary: Age of Pirates - Caribbean Tales Videos In Game Do Not
Play
Product: Wine
Version: 4.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: trymeout(a)tutanota.com
Distribution: ---
Created attachment 65428
--> https://bugs.winehq.org/attachment.cgi?id=65428
video log
For whatever reason none of the intro videos or the video that is supposed to
play when you create a game does not play. No popup errors occur and the game
keeps going as if there was no videos to play
Tested on Wine 4.17 on Manjaro.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45519
Bug ID: 45519
Summary: PLAYKEY: unexpectedly terminated when I try switch
client to full screen mode by Alt + Enter
Product: Wine
Version: 3.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikhail.v.gavrilov(a)gmail.com
Distribution: ---
PLAYKEY: unexpectedly terminated when I try switch client to full screen mode
by Alt - Enter
This I see in terminal output:
failed to create drawable
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 1 (X_CreateWindow)
Serial number of failed request: 402
Current serial number in output stream: 422
X Error of failed request: GLXBadWindow
Major opcode of failed request: 150 (GLX)
Minor opcode of failed request: 32 (X_GLXDestroyWindow)
Serial number of failed request: 2520
Current serial number in output stream: 2520
How reproduce:
1) Download playkey client:
https://static.playkey.net/clientdownload.aspx?file=windows-desktop/Release…
2) Launch playkey client:
$ .wine/drive_c/Program\ Files\ \(x86\)/Playkey/Playkey.exe
"playkey:///?host=mgm.playkey.net&port=13000&token=MDI0QzlEQ0Q2MkE3N0Q0NUFDREMzOEE4OUY1QkUyQzdGQ0Y2M0YwMTI3REQyOTQ4QkMzM0I5MjA1Qjk4QTUxQUVBOUJDQTRGQzNFOUJBNDVBMTVGRkEzOTI0MDIwQ0Y4&language=ru&session-id=T23668568&gatid=UA-52416734-1&cid=841521404.1532440982&fps=33&resolution=1920x1080&device[]=gamepad&device[]=keyboard_and_mouse"
3) Try switch to full screen mode. Press Alt + Enter
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47573
Bug ID: 47573
Summary: "BT Cloud" app silently fails on startup
Product: Wine
Version: 4.12.1
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: ---
I've installed the "BT Cloud" app under Wine (currently version 4.12.1). On
double-clicking the desktop icon, I get the hourglass for a few seconds, but
that's all - no further action. The Ubuntu desktop continues to function as
normal.
Bearing in mind the criticism I've had on another bug I reported recently, I
have a problem. I cannot find a link the the app that is available to people
who are not BT subscribers. All I can do is send a copy of the software in
question to anyone who needs it for the purposes of this investigation.
Alternatively, if there is any debug information I can get, you'll have to tell
me how to get 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=47707
Bug ID: 47707
Summary: wine4.14 MakaronEXv4.1 Install
Product: Wine
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: seganfl2k(a)gmail.com
Distribution: ---
Created attachment 65179
--> https://bugs.winehq.org/attachment.cgi?id=65179
wine4.14 MakaronEXv4.1 Install
it installs just puts out error possibly thought may be of some use
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47673
Bug ID: 47673
Summary: GeForce NOW: Unimplemented function
api-ms-win-crt-private-l1-1-0.dll._o__seh_filter_dll
Product: Wine
Version: 4.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: martinplr(a)gmail.com
Distribution: ---
Like in title
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47646
Bug ID: 47646
Summary: Laragon can't start Apache server: httpd is not
recognized as an internal or external command
Product: Wine
Version: 4.14
Hardware: x86-64
URL: https://github.com/leokhoa/laragon/releases/download/4
.0.15/laragon-full.exe
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
$ openssl sha256 laragon-full.exe
SHA256(laragon-full.exe)=
55f1c421a6631755da5de30dcdc72c361b8dbf688fc8b773bdd5a10f36dd2f73
When trying to start the server in Laragon, it yields the following error
message:
Steps to reproduce:
1. Download and install Laragon from the provided URL.
2. Start the program from the default location (mine was C:/laragon)
3. Click the "Start all" button in the bottom left hand corner.
Error message:
---------------------------
Service Apache can not start. Reason:
----------------------------------------
'C:\laragon\bin\apache\httpd-2.4.35-win64-VC15\bin\httpd ' is not recognized as
an internal or external command, operable program or batch file
Expected results: Apache starts.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47585
Bug ID: 47585
Summary: GetProcessWorkingSetSizeEx function break Splinter
Cell : Conviction
Product: Wine
Version: 4.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: berillions(a)gmail.com
Distribution: Gentoo
Hello,
i report the bug even if i use Wine-Staging 4.13 because the issue is caused by
a function implemented in Wine Vanilla source.
When i launch the game from UPlay, the game hangs at launch. I have the game's
window, the game's process exist but nothing else.
I launch UPlay and launch the game in a separate console and this is the result
when the game hangs :
"odelpasso@gentoo-desktop ~/.wine/drive_c/Program Files (x86)/Ubisoft/Ubisoft
Game Launcher/games/Splinter Cell Conviction/src/system $ wine
Conviction_game.exe
0104:err:winediag:wined3d_dll_init Setting multithreaded command stream to 0.
0104:fixme:thread:RtlCreateUserThread stack_commit != 0 is unimplemented
0107:err:winediag:wined3d_dll_init Setting multithreaded command stream to 0.
0108:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenSessionId, ...) semi-stub
0125:err:winediag:wined3d_dll_init Setting multithreaded command stream to 0.
[...]
0125:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenSessionId, ...) semi-stub
0108:fixme:sync:NtQueryInformationJobObject stub: 0xc8 9 0x9df904 112 (nil)
0125:fixme:thread:RtlCreateUserThread stack_commit != 0 is unimplemented
0125:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenSessionId, ...) semi-stub
0125:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenSessionId, ...) semi-stub
0125:fixme:thread:RtlCreateUserThread stack_commit != 0 is unimplemented
0125:fixme:thread:RtlCreateUserThread stack_commit != 0 is unimplemented
0125:fixme:process:GetProcessWorkingSetSizeEx
(0xffffffff,0x17ae3e4,0x17ae3f0,(nil)): stub"
The last test for this game on Appdb is very old and it's impossible to test
because Uplay requires a recent version of Wine.
Thanks by advance 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=47482
Bug ID: 47482
Summary: Regression - Legend of Grimrock 2: undefined symbol:
FAudio_CommitOperationSet
Product: Wine
Version: 4.12.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: tbl0605(a)gmail.com
Distribution: ---
Hi,
since at least wine 4.11 (and probably earlier, I haven't used the game
awhile), Legend of Grimrock 2 doesn't work anymore.
Shortly after starting the game, I get a popup telling me "The following error
occurred while starting up the game: XAudio2 error in XAudio2Create" and game
ends.
And I get following error logged:
0009:err:module:load_so_dll failed to load .so lib
"/opt/wine-devel/bin/../lib/wine/xaudio2_7.dll.so":
/opt/wine-devel/bin/../lib/wine/xaudio2_7.dll.so: undefined symbol:
FAudio_CommitOperationSet
0009:err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
L"C:\\windows\\system32\\xaudio2_7.dll"
Googling a bit points me to patch d341efeff071532801fdc224062eb9e60dc5aea0
[xaudio2: Use new features from FAudio 19.06 (but keep compatibility for
<=19.05).]
I really don't know if its the culprit, just tell me how I could help :)
Thank you!
Thierry.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47393
Bug ID: 47393
Summary: Unhandled exception: assertion failed in 32-bit code
(0xf774ec89).
Product: Wine
Version: 1.6-rc2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stevedonato(a)gmail.com
Distribution: ---
Created attachment 64740
--> https://bugs.winehq.org/attachment.cgi?id=64740
Unhandled exception: assertion Wine 1.6.2 Linux mint 18.2
Running a windows program that use to work? maybe I had a newer release of wine
at that time.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47351
Bug ID: 47351
Summary: World of Warcraft still crashes at launch
Product: Wine
Version: 4.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: berillions(a)gmail.com
Regression SHA1: 13e11d3fcbcf8790e031c4bc52f5f550b1377b3b
Distribution: Gentoo
Created attachment 64686
--> https://bugs.winehq.org/attachment.cgi?id=64686
GetTickCount hack for WoW ... again
Hello,
I still have a crash at launch with World of Warcraft (i did not try with
others Blizzard games). When i launch the game, it crash with a Blizzard error
138 like this :
"ACCESS_VIOLATION : error 138: ERROR #138 (0x8510008a) Fatal exception!
The instruction at "0x0000000000000000" referenced memory at
"0x0000000000000000".
The memory could not be "executed".
With the attached hack, the game launches correctly without crash.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47292
Bug ID: 47292
Summary: vs 2010 unimplemented function
MSVCR100_CLR0400.dll._initterm_e,
MSVCR100_CLR0400.dll._except_handler4_common
Product: Wine
Version: 4.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: htl10(a)users.sourceforge.net
Distribution: ---
Using visual studio 2010 express (Microsoft Visual Studio 10.0), targetting
Debug|Win32 mode, to build portaudio ( http://www.portaudio.com/ )
, aborts with:
...
Creating library Win32\Debug\portaudio_x86.lib and object Win32\Debug\port
audio_x86.exp
...
wine: Call from 0x7bc8e1f1 to unimplemented function
MSVCR100_CLR0400.dll._initterm_e, aborting
wine: Call from 0x7bc8e1f1 to unimplemented function
MSVCR100_CLR0400.dll._except_handler4_common, aborting
wine: Call from 0x7bc8e1f1 to unimplemented function
MSVCR100_CLR0400.dll._except_handler4_common, aborting
012d:err:seh:setup_exception_record stack overflow 824 bytes in thread 012d eip
f7b3c61e esp 00230ff8 stack 0x230000-0x231000-0x330000
...
C:\users\hin-tak\Temp\lnk981d.tmp : fatal error LNK1136: invalid or corrupt fil
e [Z:\home\hin-tak\git-others\portaudio\build\msvc\portaudio.vcxproj]
Release|Win32 mode works, so this is a Debug|Win32 specific requirement.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47212
Bug ID: 47212
Summary: Add a configure flag to disable the installation of
include/* and bin/widl
Product: Wine
Version: 4.8
Hardware: Other
OS: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
A lot of Wine users prefer to compile Wine for sources, yet they are not
interested in developing Windows software under Wine. Currently Wine already
includes 959 header files.
It would be great to have a configure option, say
--disable-devel
which disables the installation of Wine headers and widl.
Thank you!
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47144
Bug ID: 47144
Summary: HANG on wineboot -u
Product: Wine
Version: 3.0.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kenorb(a)gmail.com
Distribution: ---
$ wine --version
wine-3.0.3 (Ubuntu 3.0.3-2)
$ wineboot -u
0014:err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling
back to RandR 1.0. Please consider using the Nouveau driver instead.
000d:err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling
back to RandR 1.0. Please consider using the Nouveau driver instead.
003b:err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling
back to RandR 1.0. Please consider using the Nouveau driver instead.
0039:err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling
back to RandR 1.0. Please consider using the Nouveau driver instead.
(HANG)
Popup error:
Title: rundll32.exe
Message: This application could not be started. Do you want to view information
about this issue?
When clicked yes, I've been redirected to
https://docs.microsoft.com/es-es/dotnet/framework/deployment/initialization…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47125
Bug ID: 47125
Summary: Preloader fails to reserve a memory range when running
under valgrind.
Product: Wine
Version: 4.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeffersoncarpenter2(a)gmail.com
Distribution: ---
Created attachment 64340
--> https://bugs.winehq.org/attachment.cgi?id=64340
Valgrind output
Exact steps to reproduce:
$ git clone git://source.winehq.org/git/wine.git
$ mkdir wine_build && cd wine_build
$ ../wine/configure --enable-win64 CFLAGS="-Og -g"
$ make
$ cd ..
$ mkdir test_program && cd test_program
$ echo 'int main() { return 0; }' > main.c
$ x86_64-w64-mingw32-gcc main.c -o main.exe
$ valgrind --trace-children=yes ../wine_build/loader/wine64 main.exe
...
preloader: Warning: failed to reserve range 0000000000110000-0000000068000000
...
When running under valgrind, the preloader fails to reserve the memory range
and prints this warning. When not running under valgrind, no such warning is
printed.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44487
Bug ID: 44487
Summary: Epic Game Launcher flashes and quits with the amdgpu
driver
Product: Wine-staging
Version: 2.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fin4478(a)hotmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 60435
--> https://bugs.winehq.org/attachment.cgi?id=60435
Epic Game launcher wine log
Download the launcher:
https://www.epicgames.com/unrealtournament/download
I have done as nvidia users have done to setup the launcher:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=35809
The launcher starts but is visible about 100 milliseconds. Then it quits. Log
attached.
Setting the MaxVersionGL registry value to 0x30002 or 0x40005 does not help.
Using MESA_GL_VERSION_OVERRIDE in the command line causes a segmentation fault
in libc.so.6.
=>0 0x00007f018f704866 in libc.so.6 (+0x95866) (0x000000000060e7b0)
1 0x00007f018276111f in winex11 (+0x3111e) (0x000000000060e7b0)
2 0x000000007bcbe659 RtlRunOnceExecuteOnce+0x38() in ntdll
(0x000000000060e800)
3 0x000000007b491d11 InitOnceExecuteOnce+0x10() in kernel32
(0x000000000060e830)
4 0x00007f0182764085 in winex11 (+0x34084) (0x0000000005e50df0)
5 0x00007f0182753552 in winex11 (+0x23551) (0x0000000005e50df0)
6 0x00007f018d2d5748 __wine_get_wgl_driver+0x97() in gdi32
(0x000000000060e950)
7 0x00007f01871a2d21 in wined3d-csmt<elf> (+0x76d20) (0x0000000000006000)
8 0x00007f01871a87ef in wined3d-csmt<elf> (+0x7c7ee) (0x0000000000006000)
My system:
xfce@ryzen5pc:~$ inxi -bM
System: Host: ryzen5pc Kernel: 4.15.0-rc8+ x86_64 bits: 64
Desktop: Xfce 4.12.4 Distro: Debian GNU/Linux buster/sid
Machine: Device: desktop Mobo: ASUSTeK model: PRIME B350M-K v: Rev X.0x
serial: N/A
UEFI [Legacy]: American Megatrends v: 3401 date: 12/04/2017
CPU: 6 core AMD Ryzen 5 1600 Six-Core (-MT-MCP-)
speed/max: 2715/3372 MHz
Graphics: Card: Advanced Micro Devices [AMD/ATI] Baffin [Polaris11]
Display Server: x11 (X.Org 1.19.6 )
drivers: ati,amdgpu (unloaded: modesetting,fbdev,vesa,radeon)
Resolution: 1920x1080(a)60.00hz
OpenGL: renderer: Radeon RX 560 Series (POLARIS11 / DRM 3.25.0 /
4.15.0-rc8+, LLVM 5.0.1)
version: 4.5 Mesa 17.3.3
Network: Card: Realtek RTL8111/8168/8411 PCIE Gigabit Ethernet Controller
driver: r8169
Drives: HDD Total Size: 256.1GB (60.0% used)
Info: Processes: 256 Uptime: 7:03 Memory: 1300.9/7976.9MB
--
Do not reply 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=34783
Bug #: 34783
Summary: PDFill PDF Editor 11 cannot open PDFs
Product: Wine
Version: 1.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: artghio(a)tiscali.it
Classification: Unclassified
PDFill PDF Editor 11.0 build 4 shows the attached message error when I try to
open a new PDF project.
How to reproduce: (my operating system is Kubuntu 13.10 x64)
1) install GhostScript 8.63 x86 (from
http://www.plotsoft.com/download/gs863w32.exe -
b9743af446212cdce0d0abac276d9716)
2) install PDFill 11 (from http://www.plotsoft.com/download/PDFill.exe -
762d7b0b034f6f5b914935083bb74a67)
3) launch "winetricks corefonts" (see:
http://bugs.winehq.org/show_bug.cgi?id=34281 )
4) open PDFill PDF Editor (executable PDFill.exe)
5) go to File menu -> Open new PDF Project and select a PDF file
WINEDEBUG=+relay,+seh,+tid wine "./PDFill.exe" &> log.txt
https://www.dropbox.com/s/t8ac8yqx0rjiong/log.zip
Side note: The previous version (version 10.0 build 4:
https://www.dropbox.com/s/qyhsdp0yebd6wzc/PDFill%2010.0%20build%204.exe )
worked (it required also to install Sun Java Virtual Machine 1.6).
--
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=19967
Summary: Oblivion: overflow(?) in quartz if compiled without
mpg123
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roothorick(a)new.rr.com
Compile wine without mpg123, start Oblivion, start a game, wait a certain
constant amount of time after the game starts -> crash. Based on the behavior,
I'm guessing it's a page fault. winedbg says:
First chance exception: page fault on read access to 0x00000000 in 32-bit code
(0x7bf9630a).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7bf9630a ESP:0033e9f4 EBP:0033ea1c EFLAGS:00010202( R- -- I - - - )
EAX:00000000 EBX:7bfbdff4 ECX:6f517ef0 EDX:00000000
ESI:6f5184f8 EDI:6f5184f8
Stack dump:
0x0033e9f4: 6f517ef0 ffffffff 0033ea2c 7bf949b9
0x0033ea04: 00000000 6f517ea8 7bf962db 7bfbdff4
0x0033ea14: 00000000 6f5184f8 0033ea5c 7bf937f9
0x0033ea24: 6f5184f8 ffffffff 0033ea4c 7bf9625e
0x0033ea34: 6f517b34 6f5186b4 6f517ee8 7ef8bdf6
0x0033ea44: 00110058 00000000 00000000 7bfbdff4
Backtrace:
=>0 0x7bf9630a PullPin_Disconnect+0x3a() in quartz (0x0033ea1c)
1 0x7bf937f9 Parser_PullPin_Disconnect+0x139() in quartz (0x0033ea5c)
2 0x7bf732cc FilterGraph2_RemoveFilter+0x1cc() in quartz (0x0033ebcc)
3 0x7bf7715e FilterGraph2_Render+0x53e() in quartz (0x0033ee1c)
4 0x7bf72e60 FilterGraph2_RenderFile+0x1b0() in quartz (0x0033ee7c)
5 0x006acf86 in oblivion (+0x2acf86) (0x00000000)
0x7bf9630a PullPin_Disconnect+0x3a in quartz: movl 0x0(%eax),%edx
--
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=47859
Bug ID: 47859
Summary: Ragnarok Online (iRO): Updater crashes, possibly
because of Gecko - backtrace included
Product: Wine
Version: 4.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: proveit(a)tutamail.com
Distribution: ---
Created attachment 65362
--> https://bugs.winehq.org/attachment.cgi?id=65362
Terminal output AND backtrace from the crash
I produced this bug on a 64-bit version of Mint 19.1 (Mate).
I want to note that Wine Gecko (32-bit) version 2.47, Wine Mono Runtime 4.9.3,
and Wine Mono Windows Support 4.9.3 are installed. Wine itself prompted me to
install them; the packages are not from my operating system's repository. I
initially had Wine stable installed when Gecko and Mono were installed.
However, I upgraded to Wine development branch before doing this test, wiping
out all my Wine bottles in the process. The only caveat is that I don't know if
Wine development would have upgraded the packages if I had started with it.
Although my specific problem is with a game, I believe there is a larger
problem with Gecko being unable to simulate the functionality of Internet
Explorer or whatever browser the updater invokes to display its content.
To replicate the problem:
1. Download the installer by clicking "Ragnarok Download" here:
http://www.playragnarok.com/downloads/clientdownload.aspx
2. You get a file called Ragnarok-DLM.exe. This is a download manager. There is
no known way to run the download manager under Linux. However, you can run the
download manager in Windows, then move the 3 files it downloads to Linux. The 3
files are:
Media1.cab: SHA256 hash is
9e910ac06534197bb378a23eaf0165c96f527b8d7ee3a9a11b08fd16301b8a66
Media2.cab: SHA256 hash is
f469e34f999653a143d53c696649b45bdc44847b547da9631ac4f274179d0738
Ragnarok_Installer.msi: SHA256 hash is
8d10a9175da618574c4130f2398d5a2b83af516ac6fae7c6d98e7f240d4f6288
3. Install vcrun2008 using winetricks:
./winetricks vcrun2008
4. Install the game itself:
wine start Ragnarok_Installer.msi
5. The game successfully installs. Launch the game itself with the checkbox or
using the shortcut on your desktop; doesn't matter which.
6. The game tries to update itself. The result is a wine crash either
instantly, or within 60 seconds. I've attached a crash log.
7. After the installer crashes, the terminal doesn't show a $ sign, so I killed
the process with Ctrl + C. Terminal output is also attached as
terminaloutput.txt.
Workaround: The updater on the game does not crash if "winetricks vcrun2008
ie8" is used. Because ie8 solves the problem, Gecko is a possible cause of the
crash. However, installing ie8 is not the best long-term solution. Gecko would
be preferable.
Another observation is that ie8 is not ALWAYS required. For example, when I
tested the same version of Linux on a VirtualBox virtual machine, ie8 was NOT
required. This indicates that the crash may be dependent on hardware to some
extent.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47038
Bug ID: 47038
Summary: Zero Time Dilemma crashes with unhandled page fault on
read access in CryptGenRandom
Product: Wine
Version: 4.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: tijs96(a)hotmail.com
Distribution: ---
The game crashes instantly after launching, before even opening a window.
The game makes a call to CryptAcquireContextA which fails because the game
doesn't set the CRYPT_NEWKEYSET flag and wine assumes the existence of a
certain registry key. The registry key doesn't exist, wine returns an error and
the game calls CryptGenRandom with the value it received from
CryptAcquireContextA without checking for an error.
Relevant log lines:
0288:Call
advapi32.CryptAcquireContextA(0032fc08,00000000,00000000,00000001,00000000)
ret=004087cc
0288:Call rsaenh.CPAcquireContext(063a5e80,00000000,00000000,063a09e8)
ret=7e93ce36
0288:Call advapi32.GetUserNameA(0032f78c,0032f788) ret=7b9e46b0
0288:Ret advapi32.GetUserNameA() retval=00000001 ret=7b9e46b0
0288:Call advapi32.RegOpenKeyExA(80000001,0032f5cc
"Software\\Wine\\Crypto\\RSA\\thijs",00000000,00020019,0032f730) ret=7b9dcb6e
0288:Ret advapi32.RegOpenKeyExA() retval=00000002 ret=7b9dcb6e
0288:Ret rsaenh.CPAcquireContext() retval=00000000 ret=7e93ce36
0288:Ret advapi32.CryptAcquireContextA() retval=00000000 ret=004087cc
0288:Call advapi32.CryptGenRandom(00000004,00000004,0032fc04) ret=004087db
...
wine: Unhandled page fault on read access to 0x00000004 at address 0x7e93d3f3
(thread 0288), starting debugger...
I patched CryptAcquireContextA with "*phProv = 0;" before returning. This fixes
the crash and the game runs fine at first glance, so it seems the game does not
rely on a correct implementation. The link below contains the full
+relay,+crypt log (includes a lot of output from Steam).
https://mega.nz/#!TAVWWKIZ!Z2W5IquxzNEOkR-DxkWAyPwTRz8ZlHjWK9CvQkQUCmc
--
Do not reply 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=23635
Summary: Absolute Blue: 'Memory access violation' while loading
Product: Wine
Version: 1.2-rc7
Platform: x86
URL: http://www.intermediaware.de/index.php?id=119
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=29565)
--> (http://bugs.winehq.org/attachment.cgi?id=29565)
plain console output
Absolute Blue (a small, freeware arcade game) crashes with a memory access
violation while loading.
Tested with several Wine versions back until 1.0.1, the same crash happens in
each version for me.
I have no Windows installed, so can't test how the game behaves under Windows.
How to reproduce the issue:
Start the game, when the loading bar almost reaches 100%, an error dialog is
shown and the game quits.
Note: due to bug #23173 the game's screen is flipped upside-down. As a
workaround you can change ORM to 'backbuffer' in the registry.
Fedora 13 (Selinux is enabled but doesn't interfere with Wine)
Kernel 2.6.34.1
Wine-1.2-rc7
--
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=47887
Bug ID: 47887
Summary: rpcrt4:server regression due to widl change?
Product: Wine
Version: 4.17
Hardware: x86
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
rpcrt4:server started failing on 2019-08-19:
server.c:1763: this is the last test seen before the exception
09f4:server: unhandled exception 000006f7 at 76B2E743
https://test.winehq.org/data/tests/rpcrt4:server.html
Interestingly the failure only happens when the test is run with elevated
privileges.
The rpcrt4:server source did not change on that day but there was a series of
widl commits. It seems likely one of them is the reason for the failures.
git log f131795b3047..60d668631f3e
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47803
Bug ID: 47803
Summary: call :routine || exit produces different results from
Windows command prompt
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: lois.diqual(a)gmail.com
Distribution: ---
The following batch code produces different results on wine cmd and windows
cmd:
call :subroutine || exit /B 0
echo "after subroutine call"
:subroutine
goto :EOF
Expected output: "after subroutine call"
Actual output:
- Wine cmd: nothing
- Windows cmd: "after subroutine call"
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38699
Bug ID: 38699
Summary: Consortium Master Edition: intro scene
empty/flickering
Product: Wine
Version: 1.7.44
Hardware: x86
URL: http://store.steampowered.com/app/264240
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 51624
--> https://bugs.winehq.org/attachment.cgi?id=51624
terminal output
I tested this bug with the GOG.com version of the game.
When starting a new game from the main menu, the game begins with an intro
sequence, but only the HUD can be seen, the screen is filled with solid color
and it's flickering. I can't get past the intro due to this bug.
Tried with native d3dx9*, disabled GLSL and with the CSMT patchset, but none of
them helped.
The game developers are aware of the problem when running the game under Wine,
one of them submitted a test result on Appdb:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=32193
According to him it's a problem on Wine side that it can't handle properly the
shaders used by the game. He even posted a workaround to the problem: adding
r_signal_fx "0" variable to the config file. To tell the truth it changed
nothing for me... the screen is blank for me in the intro whether that variable
is 1 or 0.
wine-1.7.44-117-gb2aa984
Fedora 21 x86
Nvidia binary drivers 340.76
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47780
Bug ID: 47780
Summary: Error after opening WinAmp
Product: Wine
Version: 4.0.2
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: emilyschulteslifkin(a)gmail.com
Created attachment 65269
--> https://bugs.winehq.org/attachment.cgi?id=65269
Downloaded after error with winamp
I open Winamp Installer for installation, and it goes to the first screen.
After going forward to the next step, it goes to a blank window and then it
says a serious error occurred
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47744
Bug ID: 47744
Summary: Low FPS on few Games with a 16+ cores CPU
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: florian.richer(a)protonmail.com
Distribution: ---
On few games (GTAV, Star Citizen, ...) with DXVK. Games run with a low FPS. To
resolve it, i must disable 48 cores on my CPU to keep only 16 cores active.
I have already contacted DXVK for this bug but is not a bug on their sides but
it's a bug caused either by wine or by the kernel.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47757
Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #3 from Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> ---
Closing Duplicate.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39808
Bug ID: 39808
Summary: either cmd || operator fails to evaluate exit codes or
exit codes are incorrect
Product: Wine
Version: 1.7.55
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: fiendishx(a)gmail.com
Distribution: ---
seen:
echo 0 || echo fail
0
fail
It should not be printing fail. It should only print 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=40531
Bug ID: 40531
Summary: Max Payne 3 : Smoke, plants, blood rendered
incorrectly
Product: Wine-staging
Version: 1.9.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: berillions(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 54354
--> https://bugs.winehq.org/attachment.cgi?id=54354
Smoke gun renderer black
Hi,
I create this bug report to wine-staging because the game runs only with this
version of Wine. With the Vanilla version it crashes at launch.
You can see on the differents screenshot, Smoke, plants, blood rendered
incorrectly in-game. Smoke and blood rendered black while plants rendered
white
In the terminal output, the console shows continually this line :
fixme:d3d:wined3d_texture_generate_mipmaps texture 0x4ee90140 stub!
I uploaded to mediafire the +d3d WINEDEBUG :
http://www.mediafire.com/download/64drxlxx8i3irxs/d3d_MaxPayne3.txt.tar.xz
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47696
Bug ID: 47696
Summary: EverQuest Started Appearing Upside-Down After Working
Fine for years
Product: Wine
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq.machg(a)spamgourmet.com
Distribution: ---
The game EverQuest used to work great for me on Linux (for years I had no
issue). Ever since my last system update however, the game's visuals appear
inverted/flipped.
What's interesting is that the game still behaves as if the video wasn't
flipped: if I click where a button *should* be, it works. So it seems like the
mouse input layer is working normally, and it's only the video output that has
broken.
--
Do not reply 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=35876
Bug ID: 35876
Summary: Hard Reset renders incorrectly with GLSL enabled
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: kmaterka(a)wp.pl
Game renders incorrectly with GLSL enabled. Disabling GLSL lowers amount of
video defects considerably, unfortunately it is not fixing all of them.
Take a look at screenshots submitted here:
http://appdb.winehq.org/screenshots.php?iAppId=13518&iVersionId=25131
Whatever GLSL is enabled or disabled in log you can find a LOT of such errors
(this pack of messages in loop):
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
err:d3d:wined3d_debug_callback 0x2337b80: "GL_INVALID_VALUE error generated.
Point size must not be negative.".
err:d3d:state_pscale >>>>>>>>>>>>>>>>> GL_INVALID_VALUE (0x501) from
glPointSize(...); @ state.c / 1568
err:d3d:wined3d_debug_callback 0x2337b80: "GL_INVALID_VALUE error generated.
Point size must not be negative.".
err:d3d:state_pscale >>>>>>>>>>>>>>>>> GL_INVALID_VALUE (0x501) from
glPointSize(...); @ state.c / 1568
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
fixme:d3d:gl_stencil_op Unrecognized stencil op 0.
You can download demo using Steam:
http://store.steampowered.com/app/98400/
or from:
http://video.cloudfront.bit-tech.net/bitgamer-demo/hardresetdemo_en.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=47789
Bug ID: 47789
Summary: Gameforge Client: Initialization fails due to
SparkWebHelper.exe crashing
Product: Wine
Version: 4.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sickam(a)mail.ru
Distribution: ---
Created attachment 65278
--> https://bugs.winehq.org/attachment.cgi?id=65278
Wine's terminal output
Hello everyone,
as in the summary stated the Gameforge Client fails to initialize due to
SparkWebHelper.exe crashing. I can click a "retry" symbol in the launcher
afterwards, but it keeps failing again and again. You can find a terminal
output and a backtrace in the attachments.
My system:
OS: Gentoo
uname -a: Linux gen2 5.2.16-gentoo #1 SMP Sat Sep 21 14:14:44 CEST 2019 x86_64
AMD Ryzen 7 1800X Eight-Core Processor AuthenticAMD GNU/Linux
GPU: AMD Vega 56
Window server: xorg-server-1.20.5
Window manager: i3-4.17.1
Mesa: mesa-19.2.0_rc4
LLVM: llvm-9.0.0
Download to the Gameforge Client: https://gameforge.com/en-US/download
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47503
Bug ID: 47503
Summary: Problems with CreateProcess(CREATE_SUSPENDED) and
later ResumeThread
Product: Wine
Version: 4.0.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: ghotik2002(a)yahoo.com
Distribution: ---
I'm trying to port DxWnd ( https://sourceforge.net/p/dxwnd ) on Wine and it
runs
pretty out of the box for injection based on SetWindowsHook calls, but in many
cases it is necessary to use code injection based on thread suspension /
resume.
An injection mode uses CreateProcess(CREATE_SUSPENDED) and some later
ResumeThread
call, but the result is an alive process (I can list it with Linux ps command)
that is probably still suspended and can't take control of the desktop.
If anyone may want to replicate the test, he/she may contact me on SourceForge
DxWnd dedicated forum or write me at ghotik2002(a)yahoo.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=47913
Bug ID: 47913
Summary: Canon driver crashes on install
Product: Wine
Version: 4.0.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: rebrown01(a)gmail.com
Distribution: ---
Created attachment 65408
--> https://bugs.winehq.org/attachment.cgi?id=65408
Backtrace file for canon driver installation
Canon driver MP Navigator 3.0.6 EX crashes on install file
mpnx_3_0-win-3_06-ea23_2.exe
ubuntu 18.04.3
Wine 4.0.2
4.15.0-64-generic
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47914
Bug ID: 47914
Summary: winecfg: many ALSA devices are missing from the device
list
Product: Wine
Version: 4.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: forestcode(a)ixio.org
Distribution: ---
winecfg lists only a small subset of the ALSA devices on my system, and the one
I need for surround playback is not among them.
This is an ALSA-only system. PulseAudio is not installed.
Ubuntu 19.04, x86_64, wine-4.17 (Staging) from the winehq repo.
Running aplay -L shows dozens of output devices, including these:
default:CARD=Audigy2
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
Default Audio Device
sysdefault:CARD=Audigy2
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
Default Audio Device
front:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
Front speakers
rear:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
Rear speakers
center_lfe:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
Center and Subwoofer speakers
side:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
Side speakers
surround21:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
2.1 Surround output to Front and Subwoofer speakers
surround40:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
4.0 Surround output to Front and Rear speakers
surround41:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=Audigy2,DEV=0
SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
The closest match for any of those that appears in winecfg is:
Out: SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
As you can see, that is not useful, since there are a dozen different devices
with that same description. winecfg gives me no indication of which actual
device it is referring to, and no way to select the one I need.
Could it be that wine is skipping any device that has the same description as
one that it already enumerated?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45702
Bug ID: 45702
Summary: World of Final Fantasy crashes with page fault on read
access to 0x0 at address (0x1409b111f)
Product: Wine
Version: 3.14
Hardware: x86-64
URL: https://store.steampowered.com/app/552700/WORLD_OF_FIN
AL_FANTASY/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lockert.fredrick(a)gmail.com
Distribution: Debian
Created attachment 62129
--> https://bugs.winehq.org/attachment.cgi?id=62129
Backtrace
When starting World of Final Fantasy, it crashes with:
wine: Unhandled page fault on read access to 0x00000000 at address 0x1409b111f
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47750
Bug ID: 47750
Summary: Linker complaining about multiple logf_finite
definitions
Product: Wine
Version: 4.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: janarvottin(a)gmail.com
Distribution: ---
Created attachment 65231
--> https://bugs.winehq.org/attachment.cgi?id=65231
compilation log
When compiling 4.15 with patches from staging repository linker fails to
assemble libmvec_nonshared.a.
Same problem aried with 4.14. Partial log 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=47104
Bug ID: 47104
Summary: Cannot click anywhere on VST plugins
Product: Wine-staging
Version: 4.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: paulalbertdev(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Hi !
Just wanted you to know that 10mins ago everything was working fine but then I
upgraded the staging version of wine and, since that, when I'm using windows
VSTs plugins through vst-bridge and wine, clicks on the interface are not taken
into account... So I cannot use no win VST anymore.
Gonna downgrade to dev version but got other problems (less disturbing) with
it.
Good luck for fixing the bug !
Cheers
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40378
Bug ID: 40378
Summary: Monitor AOC I-menu not running
Product: Packaging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: fatihfawaz(a)gmail.com
CC: michael(a)fds-team.de, sebastian(a)fds-team.de
Distribution: ---
Created attachment 54084
--> https://bugs.winehq.org/attachment.cgi?id=54084
Program error
i can't running application from AOC, I-menu becouse i have a bug, a bug i
attach the file. thank you...
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47904
Bug ID: 47904
Summary: Jobs should also report a count of failed test units
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Currently jobs report the number of individual ok() failures.
That's ok when testing an individual test unit.
But for WineTest jobs one can get numbers like 390 or even 2733. That's
impossible to compare to the results of test.winehq.org which report the number
of failed test units. In particular test.winehq.org rejects reports that have
more than 50 or 70 failed test units and its impossible to tell by looking at
the results on the TestBot whether the report was rejected or not.
So it would be nice to report the number of failed test units in addition to
the number of individual ok() failures.
This would also be nice when a patch modifies a Wine module so that all its
test units are re-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=47902
Bug ID: 47902
Summary: CheckForWinetestUpdate systematically claims to have
created jobs
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
CheckForWinetestUpdate.pl ends with the following lines:
LogMsg "Submitted jobs\n";
exit $Rc;
So whenever cron runs it this line appears in the TestBot log, even if the
WineTest binaries have not been updated and no job was created. So while this
allows making sure the script is still running as expected, the message is
misleading. It would be better if it exited either with a message saying there
was no update or which jobs got created.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47878
Bug ID: 47878
Summary: VirtualProtect across page boundaries does not work
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: c3210606(a)urhen.com
Distribution: ---
Official VirtualProtect documentation states:
The size of the region whose access protection attributes are to be changed, in
bytes. The region of affected pages includes all pages containing one or more
bytes in the range from the lpAddress parameter to (lpAddress+dwSize). This
means that a 2-byte range straddling a page boundary causes the protection
attributes of both pages to be changed.
This however is not replicated in Wine as only the first page will have its
protection changed and any pages after that resulting from the dwSize crossing
the boundary will not be affected.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47835
Bug ID: 47835
Summary: `-funroll-loops` breaks wine, "wine: Unhandled page
fault on write access to 0x00000000 at address ..."
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zegentzy(a)protonmail.com
Distribution: ---
As the name implies, compiling with `-funroll-loops` breaks wine. Every part of
it, from winedbg, to wine, to wineboot. Tested against both the latest wine on
git, wine 4.15, and wine 4.15. GCC 9.1.0. Arch Linux.
This is `winedbg`, for example:
```
wine: created the configuration directory '/home/gentz/.wine'
000b:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
000b:fixme:winediag:start_process Wine Staging 4.16 is a testing version
containing experimental patches.
000b:fixme:winediag:start_process Please mention your exact version when filing
bug reports on winehq.org.
000d:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
0010:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
0012:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
0014:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
wine: Unhandled page fault on write access to 0x00000000 at address
00006BB2783C2DB9 (thread 0014), starting debugger...
0014:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 19 80" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
wine: Unhandled page fault on write access to 0x00000000 at address
0000634EEE5AADB9 (thread 0012), starting debugger...
0012:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 17 88" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
wine: Unhandled page fault on write access to 0x00000000 at address
000062C321ACADB9 (thread 0010), starting debugger...
0010:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 15 84" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
^C0009:err:seh:raise_exception Unhandled exception code c000013a flags 0 addr
0xea872929
```
Here is `winecfg`:
```
winecfg
wine: created the configuration directory '/home/gentz/.wine'
000b:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
000b:fixme:winediag:start_process Wine Staging 4.16 is a testing version
containing experimental patches.
000b:fixme:winediag:start_process Please mention your exact version when filing
bug reports on winehq.org.
000d:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
0010:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
0012:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
0014:fixme:thread:create_user_shared_data_thread Creating user shared data
update thread.
wine: Unhandled page fault on write access to 0x00000000 at address
000060CC8A44ADB9 (thread 0012), starting debugger...
0012:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 17 80" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
wine: Unhandled page fault on write access to 0x00000000 at address
00006628B5FD2DB9 (thread 0014), starting debugger...
0014:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 19 88" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
^C0009:err:seh:raise_exception Unhandled exception code c000013a flags 0 addr
0xe16b1929
```
I'm marking this as minor, as the workaround is trivial: just don't build with
`funroll-loops`, but hopefully someone looks into it. I did some searching, and
couldn't find this already reported, but feel free to close if it's a dupe,
sorry!
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47892
Bug ID: 47892
Summary: Cinebench crashes just after finishing benchmark
Product: Wine
Version: 4.12.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gnarlin(a)gmail.com
Distribution: ---
Created attachment 65382
--> https://bugs.winehq.org/attachment.cgi?id=65382
Wine running cinebench r15 console output crashinfo
Cinebench crashes just after finishing benchmark just before it can display the
results.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46102
Bug ID: 46102
Summary: Wine cannot recognize Turkish keyboard layout
Product: Wine
Version: 3.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yurnerolinux(a)yandex.com
Distribution: ---
I noticed that in some games , both on plain Wine ( i'm using staging ) and
both on Proton.
On Fallout: New Vegas , you can't type "i" when Turkish keyboard layout
selected. Game ( or Wine probably , since game doesn't know about it ) just
shows it as " when you pressed "i" button. Same behaviour is also going on with
Skyrim.
When i set my keyboard layout to English thorugh my system , "i" starts to work
again.
Another example is Deus EX: Human Revolution - Director's Cut on Proton. I
realized i can't open up tab menu ( tab key ) when my keyboard set to Turkish.
If i set my keyboard English again , it starts to work.
My keyboard layout is Turkish Q keyboard.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47757
Gijs Vermeulen <gijsvrm(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|STAGED |RESOLVED
Resolution|--- |DUPLICATE
--- Comment #2 from Gijs Vermeulen <gijsvrm(a)gmail.com> ---
This has been removed from staging now. Marking this as a dupe of bug 47758.
*** This bug has been marked as a duplicate of bug 47758 ***
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47830
Bug ID: 47830
Summary: Exact Audio Copy (EAC) does not run with latest
development release
Product: Wine
Version: 4.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stefan(a)konink.de
Distribution: ---
Created attachment 65336
--> https://bugs.winehq.org/attachment.cgi?id=65336
Problem running EAC with mono-only installation
I ran Exact Audio Copy using a stock Ubuntu wine package, from the 4.0.x
branch. In this installation I stumbled on the issue that the EAC plugins were
not recognized. This issue is said to be fixed in #43270. I have manually
compiled Wine 4.17 for 32bit, which let to the output in the attachment.
After winetricks dotnet20 I was able to run EAC.exe, including the plugins that
were previously missing, this resulted in not able to retrieve information
about CDs. But this seems to be a side effect of the plugins "working". When
selecting Build-in freedb engine under Metadata options, information was
retrieved. The second attachment shows the problem using the CUETools plugin.
I have reproduced the steps with winehq-devel (4.17~disco):
Download: https://www.fosshub.com/Exact-Audio-Copy-DE.html?dwl=eac-1.3.exe
Run: wine eac-1.3.exe
Validate the output in output.txt after starting the application.
Run: winetricks dotnet2
Run: cd ~/.wine/drive_c/Program\ Files\ \(x86\)/Exact\ Audio\ Copy/
Run: wine EAC.exe
Cancel the CD-rom detection. Insert a common audio CD. Alt-G, specify e-mail.
Another Alt-G. Validate the output in output-networking.txt after starting the
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=45508
Bug ID: 45508
Summary: wine staging and gallium patches
Product: Wine-staging
Version: unspecified
Hardware: x86
URL: https://github.com/sarnex/wine-d3d9-patches
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hasculdr(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Hello. It's possible to add this patches:
https://github.com/sarnex/wine-d3d9-patches
to wine-staging project? 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=47845
Bug ID: 47845
Summary: Bug to x86_64
Product: Wine
Version: 4.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haasesaah(a)gmail.com
Distribution: ---
My original architecture was x64 but as I like play some games in x86 I did
convert with add-apt-repository ppa: architecture i386 to turn over x86_64 and
after that I had trouble within ever runnig up the games at x86 architecture.
Well, I thought the x86_64 architecture would support both. As x86 and x64.
Sorry about my barely english typewriting. Thank you so very much.
--
Do not reply 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=21312
Summary: Sony Vegas Movie Studio Platinum 9.0b: Serious issues
making video production impossible
Product: Wine
Version: 1.1.35
Platform: x86-64
URL: http://www.softpedia.com/get/Multimedia/Video/Video-Ed
itors/Sony-Vegas-Movie-Studio-Platinum.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=25649)
--> (http://bugs.winehq.org/attachment.cgi?id=25649)
Numerous FixMes and some Errs...
Well, I finally got it installed using winetrick's dontnet20 and wmp9 as
suggested on my previous bug report for not being able to install it.
It only works on Windows Vista and above compatibility modes, so the log
attached was using Windows 7 which seems best.
I'm not sure where to start on this bug report.
Sony Vegas Movie Studio 9.0b Platinum has several serious issues, all of which
we should be able to be determined from the short log attached.
I'll list them below:
* No plug-ins were found. (This includes the Media Generator, Transitions, and
Video FX tabs making them totally unusable) This effects the majority of the
application and the "Video Event FX..." window, making the program somewhat
useless.
* The Audio "Track FX..." and "Apply Non-Real Time Event FX..." windows are
both totally unusable since nothing can be clicked in them. The audio plugins
there are at least detected, just borked.
* Video Preview Window doesn't show anything, and occasionally flickers a
different color only when rendering. Terminal cycles a never ending
"fixme:msvideo:DrawDibDraw" bug when attempting to play the movie. This also
effects the "Video Event Pan/Crop..." window, making it nearly impossible to do
animation effects since determining your current location in the window is
simply a black screen.
* All icons have a black rectangle around them (trivial and probably just a
simple alpha transparency bug)
Note: Keyword download can be added since Sony Vegas Movie Studio has a free
trial. I made this log using the retail version, but it's using the same exe as
the one on the softpedia link provided.
--
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=42316
Bug ID: 42316
Summary: Cannot play multiplayer in Gwent
Product: Wine-staging
Version: 2.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stas5978(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
When tried to start Multiplayer's "Casual Math" and wait about 5 sec you will
get wine fixme:
fixme:bcrypt:BCryptOpenAlgorithmProvider algorithm L"ECDSA_P384" not supported
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47850
Bug ID: 47850
Summary: Automatically restart the TestBot Engine if it crashes
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
The CheckWineTestBot.pl script is supposed to automatically restart the TestBot
Engine if it crashes (such as because of a Perl error that only happens in
specific code paths).
However it does not work in the current usage scenario.
I think what happens is that the script is run in a non-root account for
security reasons so the call to 'service winetestbot restart' fails with a
permission denied error.
So a different approach is needed, probably one where there are two scripts:
* One which communicates with the Engine and returns whether it runs. This
script would be run through su.
* And a second script that uses the first script's exit code to decide when to
restart the Engine. It may even be possible to have systemd handle the task of
this second script (to be investigated).
Another totally different approach would be to parse the Engine log and check
the presence of messages logged by SafetyNet() which runs every 10 minutes. But
that would not really guarantee that the Engine is reachable through its
socket.
Yet a third option would be to have systemd start the Engine automatically when
its socket is accessed. That may allow for systemd to automatically restart the
Engine when it crashes (to be investigated).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47827
Bug ID: 47827
Summary: Nostale - New Launcher doesn't work
Product: Wine
Version: 4.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jonadev1993(a)gmail.com
Distribution: ---
Created attachment 65332
--> https://bugs.winehq.org/attachment.cgi?id=65332
Screenshot (Launcher)
Error message:
Error: Insufficient free space.
Logs:
00d8:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated.
Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in
the winbind package of your distribution.
00d8:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenElevation, ...) semi-stub
00d9:fixme:ver:GetCurrentPackageId (0xa5fefc (nil)): stub
00d9:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d9:fixme:toolhelp:Heap32ListFirst : stub
00d8:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenElevation, ...) semi-stub
okok00e1:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is
outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can
find it in the winbind package of your distribution.
00e1:err:winediag:wined3d_dll_init Setting multithreaded command stream to 0.
00e1:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00e1:fixme:toolhelp:Heap32ListFirst : stub
00e1:fixme:ole:CoInitializeSecurity
(00000000,-1,00000000,00000000,0,3,00000000,0,00000000) - stub!
00e1:fixme:wbemprox:client_security_SetBlanket 6795E758, 096785F0, 10, 0,
(null), 3, 3, 00000000, 0x00000000
00e1:fixme:wbemprox:client_security_Release 6795E758
00e1:fixme:shell:propertystore_SetValue (0x9617898)->(0x68cfe0 0x32f724): stub
00e1:fixme:shell:propertystore_Commit (0x9617898): stub
0054:fixme:process:ProcessIdToSessionId Unsupported for other processes.
00e1:fixme:ntdll:server_ioctl_file Unsupported ioctl 110004 (device=11 access=0
func=1 method=0)
00db:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenElevation, ...) semi-stub
00e1:fixme:ntdll:server_ioctl_file Unsupported ioctl 110004 (device=11 access=0
func=1 method=0)
00e1:err:ole:CoUninitialize Mismatched CoUninitialize
ok00d8:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ...,
TokenElevation, ...) semi-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.
http://bugs.winehq.org/show_bug.cgi?id=10130
Summary: Wine does not compile on x86_64
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: garry.hurley.jr(a)gmail.com
CC: posta10100(a)yahoo.it, garry.hurley.jr(a)gmail.com
+++ This bug was initially created as a clone of Bug #4594 +++
gcc -c -I. -I. -I../include -I../include -Wall -pipe -fno-strict-aliasing
-gstabs+ -Wdeclaration-after-statement -Wpointer-arith -g -O2 -o preloader.o
preloader.c
preloader.c: In function ‘wld_mmap’:
preloader.c:259: warning: cast to pointer from integer of different size
preloader.c: In function ‘map_so_lib’:
preloader.c:680: warning: cast to pointer from integer of different size
preloader.c: In function ‘wld_start’:
preloader.c:910: warning: cast from pointer to integer of different size
preloader.c:910: warning: cast to pointer from integer of different size
{standard input}: Assembler messages:
{standard input}:434: Error: suffix or operands invalid for `push'
{standard input}:435: Error: suffix or operands invalid for `push'
{standard input}:437: Error: suffix or operands invalid for `pop'
{standard input}:438: Error: suffix or operands invalid for `pop'
{standard input}:439: Error: suffix or operands invalid for `push'
{standard input}:524: Error: suffix or operands invalid for `push'
{standard input}:524: Error: suffix or operands invalid for `mov'
{standard input}:524: Error: suffix or operands invalid for `pop'
{standard input}:927: Error: suffix or operands invalid for `push'
{standard input}:927: Error: suffix or operands invalid for `pop'
{standard input}:1016: Error: suffix or operands invalid for `push'
{standard input}:1016: Error: suffix or operands invalid for `pop'
{standard input}:1030: Error: suffix or operands invalid for `push'
{standard input}:1030: Error: suffix or operands invalid for `pop'
{standard input}:1130: Error: suffix or operands invalid for `push'
{standard input}:1130: Error: suffix or operands invalid for `mov'
{standard input}:1130: Error: suffix or operands invalid for `pop'
{standard input}:1153: Error: suffix or operands invalid for `push'
{standard input}:1153: Error: suffix or operands invalid for `pop'
{standard input}:1356: Error: suffix or operands invalid for `push'
{standard input}:1356: Error: suffix or operands invalid for `pop'
{standard input}:1550: Error: suffix or operands invalid for `push'
{standard input}:1550: Error: suffix or operands invalid for `mov'
{standard input}:1550: Error: suffix or operands invalid for `pop'
{standard input}:1585: Error: suffix or operands invalid for `push'
{standard input}:1585: Error: suffix or operands invalid for `mov'
{standard input}:1585: Error: suffix or operands invalid for `pop'
{standard input}:1668: Error: suffix or operands invalid for `push'
{standard input}:1668: Error: suffix or operands invalid for `mov'
{standard input}:1668: Error: suffix or operands invalid for `pop'
make[1]: *** [preloader.o] Error 1
make[1]: Leaving directory `/files/awjb/BUILD/wine-0.9.8-fe/loader'
make: *** [loader] Error 2
Additional information:
As I stated in bug 4594, which was ignored, the current git tree refused to
build WITHOUT using the --enable-win64 option. configure --with-x fails. Bug
is valid regardless of the --enable-win64 switch. Actual output is similar to
the following:
/usr/lib64/gcc/x86_64-slamd64-linux/4.1.2/../../../../x86_64-slamd64-linux/bin/ld:
i386:x86-64 architecture of input file `c_28606.o' is incompatible with i386
output
make[2]: *** [libwine.so.1.0] Error 1
make[2]: Leaving directory `/wine-current/wine/libs/wine'
make[1]: *** [wine] Error 2
make[1]: Leaving directory `/wine-current/wine/libs'
make: *** [libs] Error 2
This is only the last of such messages. This also occurs when doing
./configure with no options, make depend, and then make.
--
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=19297
Summary: MS Office Access Runtime 2007 don't work
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: js-box(a)nm.ru
CC: js-box(a)nm.ru
MS Office Access Runtime 2007 don't work
--
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=47840
Bug ID: 47840
Summary: Run the TestBot's WineTest executables
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Currently the TestBot monitors the WineTest executables on test.winehq.org and
schedules a full WineTest run when they change.
But the TestBot build VMs produce WineTest executables too and thus the TestBot
could use those to for the full test suite. Combined with bug 47839 this would
remove the dependency on test.winehq.org.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47839
Bug ID: 47839
Summary: Trigger VM updates whenever there are Wine commits
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Currently the TestBot monitors the WineTest executables on test.winehq.org and
triggers an unpdate of the build and Wine VMs when they change.
This means that if these executables are not updated (for instance if there is
a build on that machine), then the TestBot's build and Wine VMs are not updated
so that on the next day patches are likely to fail to apply.
So the TestBot Engine should have its own Wine repository and monitor Wine
commits and trigger VM updates accordingly.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43270
Bug ID: 43270
Summary: Exact Audio Copy does not detect plugins
Product: Wine
Version: 2.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: redstone(a)gmail.com
Distribution: ---
With a clean wine 2.11 (inited with "WINEARCH=win32 wine wineboot"), on Ubuntu
17.04 Zesty:
After installing Exact Audio Copy 1.3
(http://www.exactaudiocopy.de/en/index.php/resources/download/),
EAC does not detect the plugins that it comes bundled with. Specifically, it
does not detect CUE Tools DB Plugin, or the AcoustID Plugin.
It looks like this problem existed on older versions of wine/EAC, see comments
in https://appdb.winehq.org/objectManager.php?sClass=version&iId=24705.
To reproduce:
1. Install EAC 1.3
2. Start EAC
3. Go to menu -> EAC -> EAC Options -> Audio Plugins
The list there is empty. It should have CUETools and AcoustID listed (which is
what I see when I install EAC 1.3 on my Windows 7 machine)
I tried getting some debug info:
WINEDEBUG=+relay wine ~/.wine/drive_c/Program\ Files/Exact\ Audio\
Copy/EAC.exe > /tmp/foo 2>&1
but it didn't have anything helpful. Specifically, the DLLs for the plugins
don't appear (e.g., CUETools*.dll), nor does PluginHandler.dll appear, so it's
like it's not even trying to access them.
Any suggestions on how to debug?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47174
Bug ID: 47174
Summary: Sibelius complains about missing
AvidRemoteObjects364.dll
Product: Wine
Version: 4.3
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 64426
--> https://bugs.winehq.org/attachment.cgi?id=64426
Log
I used "winetricks -q msxml3 dotnet472" before installation. When running the
program it failes to start.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47826
Bug ID: 47826
Summary: Nostale Gameshop doesn't work with d9vk (child window)
Product: Wine
Version: 4.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jonadev1993(a)gmail.com
Distribution: ---
Patch used: childwindow.patch
The issue is here:
https://github.com/Joshua-Ashton/d9vk/issues/186
--
Do not reply 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=14801
Summary: Random freeze of Grand Prix Legends 1.2.0.1
Product: Wine
Version: 1.1.2
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peter.hoogkamer(a)gmail.com
Created an attachment (id=15349)
--> (http://bugs.winehq.org/attachment.cgi?id=15349)
Error lines from GPL freeze
When running Grand Prix Legends 1.2.0.1 I randomly get a freeze of the game.
Most of the times this happens when I wait for the last seconds to run out
after a qualifying session of when I let the Options screen open. As for the
error I am getting, they are always the same
err:ntdll:RtlpWaitForCriticalSection errors within section 0x94d100 and
0x94d1e0 (see attachement for the full error log).
I am trying to reproduce this error consitently, but I did manage to get that
write yet.
Tux
--
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=39026
Bug ID: 39026
Summary: Wrong key mapping in virtualdub
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: j-p-t(a)gmx.net
Distribution: Ubuntu
I am using German keyboard layout qwertz.
Virtualdub uses the us keys + and - (the keys left to backspace) to jump to
start (-) and end (+) of the selection.
Since + and - on German keyboard are at odd positions, Virtualdub seems to use
the scan codes of these keys and thus uses the same keys regardless of the
keyboard layout. On Windows and German keyboard it's "ß" and "'" left of
backspace.
In wine this doesn't work at all. It uses the + and ö keys. (not -, strange)
VirtualDub 1.10.4
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36313
Bug ID: 36313
Summary: valgrind shows a possible leak in
propsys/tests/propstore.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==31754== 40 bytes in 1 blocks are possibly lost in loss record 232 of 560
==31754== at 0x7BC4C735: notify_alloc (heap.c:255)
==31754== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==31754== by 0x499C848: PropertyStore_CreateInstance (propstore.c:464)
==31754== by 0x499CFD2: InMemoryPropertyStoreFactory_CreateInstance
(propsys_main.c:113)
==31754== by 0x4B4AE26: CoCreateInstance (unknwn.h:226)
==31754== by 0x49561C0: test_persistserialized (propstore.c:207)
==31754== by 0x4956646: func_propstore (propstore.c:256)
==31754== by 0x495C13C: run_test (test.h:584)
==31754== by 0x495C52B: main (test.h:654)
==31754==
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47752
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #4 from Alexandre Julliard <julliard(a)winehq.org> ---
Closing bugs fixed in 4.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=39934
Bug ID: 39934
Summary: AppCAD graphics corruption
Product: Wine
Version: 1.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jhansonxi(a)gmail.com
Distribution: Ubuntu
Created attachment 53345
--> https://bugs.winehq.org/attachment.cgi?id=53345
Correct rendering on WinXP
AppCAD is a freeware RF circuit design tool. In the Balun calculator (Circuit
Design>Balun) the schematic drawing for solution 2 is replaced by large dark
areas. Wine message:
fixme:enhmetafile:PlayEnhMetaFileRecord EMR_EXTCREATEPEN: Need to copy brush
bitmap
This affects version 4.0.0 only. It is a VB6 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=43842
Bug ID: 43842
Summary: Cached Authorization cause wrong username/password to
be used
Product: Wine
Version: 2.18
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wininet
Assignee: wine-bugs(a)winehq.org
Reporter: leslie_alistair(a)hotmail.com
Distribution: ---
When a connection is made to a server, the username/password is stored for
later use. However, if a another connection is made to the same server, using
a different username/password then the 1st username/passowrd is used instead.
Example of the code.
Connecting to the same server, using Basic Authentication.
function GetData(username, pass)
{
internet = new CInternetSession;
CHttpConnection http = internet->GetHttpConnection(..., username, pass,...)
http->OpenRequest( "GET", "/", ..., _T("HTTP/1.1"),
INTERNET_FLAG_EXISTING_CONNECT | INTERNET_FLAG_RELOAD |
INTERNET_FLAG_DONT_CACHE | INTERNET_FLAG_SECURE; );
http.Close()
internet.Close();
delete internet;
}
GetData("user", "pass");
GetData("admin", "word");
--
Do not reply 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=24701
Summary: Vampire the Masquerade bloodlines
Product: Wine
Version: 1.3.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: i30817(a)gmail.com
err:d3d:resource_init Out of adapter memory
Seems to be the first error. I have fglrx drivers but removed them from a while
and tested, and it continued.
using winetricks videomemorysize=512 for my graphics card (Ati mobility radeon
4570 512 mb) didn't have a effect (there is a difference in the offsets
reported). I'm using installed the last unofficial patch. Without it a addional
error relating to the refresh rate would manifest (it has to do with a dll file
in the bin folder shaderapidx9.dll
http://forumplanet.gamespy.com/bloodlines_tech_support/b50391/20211232/p1/
)
and a nocd.
This seems to me a regression, because i played it before in this computer. But
since i changed release, X, fglrx, wine, unofficial patch compilation and other
things, i have no idea if that is certain.
--
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=47736
Bug ID: 47736
Summary: __ASM_CFI not working on mac
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Mac OS X
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: piotr.caban(a)gmail.com
Regression SHA1: f2503a3e0d10bb563bc7ab62c6ff5093e6ad3f15
The problem is reproducible in 64-bit wine build on Mac (built with clang).
The simplest way of reproducing the problem is to write application with
following code:
try {
RaiseException(0, 1, 0, NULL);
} catch(...) {
}
It will crash when relay debug channel is enabled. It's caused by wine not
being able to unwind relay_call function.
--
Do not reply 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=22239
Summary: BabelMap's display is corrupted in several dialog
boxes
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rebecca.menessec(a)ironhavoc.org
BabelMap is a well-regarded utility for managing and tracking Unicode fonts.
http://www.babelstone.co.uk/Software/BabelMap.html
Unfortunately, this is everything I have-- these errors are generated on
appinit (main window creation, I think), and not when opening dialog boxes, and
not on app close:
user@host ~ $ wine BabelMap.exe
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=3): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=2): stub
I can attach a screenshot, if needed, but this display corruption should be
easy to reproduce. For instance, open the app and click Configure... next to
"Composite Font".
I'm using simple autogen settings, with Windows XP set as the OS. If I can
provide other useful info, I'll be happy to.
--
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=47816
Bug ID: 47816
Summary: Half Life 2 doesn't download custom/missing files from
HTTP server
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: greob(a)yahoo.com.sg
Distribution: ---
Created attachment 65306
--> https://bugs.winehq.org/attachment.cgi?id=65306
log generated by Steam's Proton
This issue is related to Half Life 2 mod Neotokyo (and possibly all other mods,
even Half Life 2 and its derivatives as well).
Multiplayer HL2 servers often serve custom maps and other assets through a
separate http server called "fast download" in order to reduce bandwidth burden
on the game server itself.
When missing a map, or any other asset, the game client (hl2.exe) connects to
that "fast download" server through http and fetches the missing content.
This works on Windows, but not under Wine. I see absolutely no connection
attempt coming from my Linux client. Nothing in Wireshark, so I assume it's not
even getting past the socket level.
Example from nginx http server log of a Windows client Get request:
26/Sep/2019:19:32:31 +0200] "GET /test_fastdl//maps/nt_ballistrade_ctg.bsp.bz2
HTTP/1.1" 200 2768027 "hl2://123.123.123.123:26300" "Half-Life 2"
I suspect this error is related to the problem (see log attached):
warn:winsock:WS2_recv_base -> ERROR 10035
Ran inside Proton (Valve's redistribution of Wine, version 4.16) with
WINEDEBUG=warn+all %command%.
I'm available for any further information. I would love to help figure this out
but I'm not sure where to start digging myself.
Love you 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.
http://bugs.winehq.org/show_bug.cgi?id=31855
Bug #: 31855
Summary: Unable to start the sims 1 deluxe and unsleshed
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fantonifabio(a)tiscali.it
Classification: Unclassified
Created attachment 41919
--> http://bugs.winehq.org/attachment.cgi?id=41919
Log of the sims start on wine 1.5.14
I have install the sims deluxe and the expansion unslashed without error but
the game not start.
Tried on Ubuntu 12.04 with wine 1.5.14.
Clean install with also:
winetricks corefonts vcrun6 vcrun2003 vcrun2005sp1 vcrun2008 vcrun2010 d3dx9
Log of start in attachment
--
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=47465
Bug ID: 47465
Summary: Issues with KnoxManageRemoteSupportClient.exe
Product: Wine-staging
Version: 4.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ToddAndMargo(a)zoho.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 64839
--> https://bugs.winehq.org/attachment.cgi?id=64839
blur ball
Dear Wine Staging,
Samsung’s Knox Manage Remote Support Client is very similar to Go To Assist
Customer for Android and Windows. It allows your to do remote support on an
Android machine from a Windows machine.
Samsung Knox support has given you permission to use their software to
troubleshoot Wine Staging:
https://partnerhub.samsung.com/s/case/5000K00001oezH7QAI/permission-to-shar…
“Our backend team expressed no qualms over this app being made available to
your support contacts at the WINE project. They do not have permission to
modify the app but they can utilize the .exe to test it in their environment.
They can and are expected to modify their environment to fascilitate the
execution of this application. If you require additional support with this
ticket, please give our office a call (1-855-567-5669) and request me by name.
Best Regards,
Jimmy B.”
Two problems with KnoxManageRemoteSupportClient.exe (the consultant side)
running under Wine Staging.
1) KnoxManageRemoteSupportClient.exe installs perfect the first time. Under
Windows 7, the second install does an uninstall. You have to a third install
to get the software back on. Under Wine Staging, the second install runs to a
point and dies. Nothing gets accomplished. If you use Wine’s Uninstaller, the
install again works fine. Would you please fix the second install problem?
The following forum post contains a lot of troubleshooting information this
issue:
https://forum.winehq.org/viewtopic.php?f=2&t=32584&p=123288
2) once it is up and working, the stinker is blurry! And it is not the fonts
or font size that is the issue. I will post a screen shot.
The following forum post contains a lot of troubleshooting information this
issue:
https://forum.winehq.org/viewtopic.php?f=8&t=32554&p=123182
Would you please fix the blur?
I can send you my copy of KnoxManageRemoteSupportClient.exe and you can run it
through Virus Total to make sure I am not pulling anything on you. It is 47
MB in size. Just tell me how you want it delivered.
Or you can create an account at samsungknox.com then sign up for the Knox
Manage free trial. It is a pain to figure out where the download is, but I can
guide you through it, if that is the route you want to take.
Many thanks,
-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.
https://bugs.winehq.org/show_bug.cgi?id=47811
Bug ID: 47811
Summary: Pro/Desktop Panels : cannot resize bigger, artifacts
appear instead
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: n296869(a)rtrtr.com
Distribution: ---
Created attachment 65299
--> https://bugs.winehq.org/attachment.cgi?id=65299
terminal-console output
Pro/Desktop Panel windows, does not resize to→bigger correctly,
edge becomes bigger without making the actual inner part bigger,
redraw artifacts appear at the gap.
all the affected dialogs in question are optionally collapsable when loosing
mouse focus, the bug affects the program regardless of the setting.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47804
Bug ID: 47804
Summary: Make adding Windows locales more scalable
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Currently adding a new Windows locale available for testing requires:
1. Manually installing the language on Windows, either through the Windows
Update mechanism for Windows < 10, or through the new (cumbersome) Windows 10
interface.
2. Manually creating a new VM object through the web interface.
3. Manually creating a live snapshot. (*)
It also has consequences:
4. On the VM selection page of the submit job procedure this creates a new line
for the VM. So if all 30+ Windows languages for each of the 3 VMs where that's
possible we would be looking at 90+ lines.
5. On the Activity page there is one column per VM. That page would get way to
big to be usable.
(*) LibvirtTool is no able to automatically change the Windows VM locale and
create the appropriate live snapshot. So issue 3 is solved. Four more to go!
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47802
Bug ID: 47802
Summary: Monitor the VMs disk usage
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
We have a Munin plugin that monitors various TestBot metrics like the VM revert
times. This can be pretty useful to diagnose issues.
However this does not monitor the VM's disk usage, i.e. the size of their qcow2
files. Yet for some VMs the disk usage can increase quite a bit with time.
Tests could also fill a VM's disk (accidentally or not), causing an increase in
the qcow2's file size.
Libvirt provides a way to query a VM's disk usage remotely. However I expect
this to not be super fast so I don't think this should be done directly in the
Munin.pl script. Also these typically do not change all that often so querying
them every 5 minutes may be overkill. So the way to go would probably be to run
a script from cron to update a TestBot table with that data (likely the Records
table), and then have Munin.pl return the latest data from that table.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43880
Bug ID: 43880
Summary: Testbot will not submit results (too many errors)
Product: Wine-Testbot
Version: unspecified
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: parkerjbarker(a)yahoo.com
"59 tests failed, there's probably something broken with your setup.
You need to address this before submitting results."
52 errors for the 64 bit test, and 59 errors for the 32 bit test.
I'm running this on real hardware, Vista, as administrator. Please update the
testing software so that I can submit the results, even with a high number of
errors.
And while you're at it, I would change the comma after "failed" to a colon.
I looked for similar bug reports but found nothing expressly dealing with this.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47796
Bug ID: 47796
Summary: mysql-workbench: Error para iniciar la aplicación
Product: Wine
Version: 4.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fitopy(a)gmail.com
Distribution: ---
Created attachment 65288
--> https://bugs.winehq.org/attachment.cgi?id=65288
mysql-workbench: Error para iniciar la aplicación
mysql-workbench: Error para iniciar la aplicación, no se puede iniciar, se
instala tranquilamente si tiene toda las dependencias satisfechas pero no
inicia despues de instalar
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44338
Bug ID: 44338
Summary: cmd: Brackets are no deliminiter in the condition part
of the if command.
Product: Wine
Version: 3.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
Created attachment 60213
--> https://bugs.winehq.org/attachment.cgi?id=60213
cmd: Change parsing of the if command to avoid parsing the operators.
Found while trying to look into #44236.
There a batch script is executed that contains lines as this:
---
if (%1)==(p) start /W " " "%SFDIR%WSFplot" wr2300.t35 3
---
This returns an error like this:
---
Syntax error
Can't recognize 'p' as an internal or external command, or batch script.
---
It looks like native does handle the brackets differently when contained
inside the condition part of the if command.
Attached is a patch that tries to skip the parsing in WCMD_ReadAndParseLine
of that part. Therefore it moves most of the content of WCMD_if into a
helper and calls that to estimate how long the condition part is.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47757
--- Comment #1 from Nikolay Sivov <bunglehead(a)gmail.com> ---
I suggest removing this from staging patches.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47793
Bug ID: 47793
Summary: Avast cannot be installed
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thekingstream(a)gmail.com
Distribution: ---
When trying to install avast the installer stop and a message error is
displayed, the error is:
HTMLayout.dll cannot be loaded to properly start GUI. Therefore process cannot
continue.
I try to copy dll in system, system32 and syswow64 directory of wine but
problem still persist
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47787
Bug ID: 47787
Summary: Path maniplation bug in cpython 3.5/3.6 but not 3.7
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zzhang(a)codeweavers.com
Distribution: ---
Bug reported by Sebastian M. Ernst on wine-devel mail list.
Found one more odd thing and it might be closely related (if not the
same bug). I tested different versions of CPython for Windows on Wine
4.14 and noticed that pytest (a Python test library) was somehow broken
on CPython 3.5 and 3.6 but not on CPython 3.7. It can also be traced
back to path manipulation:
# CPython 3.5.4
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "pathlib.py", line 1109, in resolve
File "pathlib.py", line 186, in resolve
FileNotFoundError: [WinError 2] Datei nicht gefunden: '.'
# CPython 3.6.3
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
.
# CPython 3.7.4
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
Z:\path\to\target
CPython 3.7 is correctly resolving the path '.' while CPython 3.5 and
3.6 fail in different ways. All three examples work correctly on Windows
10. "Datei nicht gefunden" translates to "file not found".
If any one wants to take this bug. Please assign it. 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=46192
Bug ID: 46192
Summary: Beat Hazard 2: Open Mic can't capture desktop audio
Product: Wine
Version: 3.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: devilj(a)outlook.pt
Distribution: ArchLinux
Created attachment 62852
--> https://bugs.winehq.org/attachment.cgi?id=62852
Wine debug output
The game fails to use WASAPI's software loopback mode to capture audio being
played by the computer. It uses a middleware library called basswasapi.dll for
this effect.
This has been reproduced in Wine 3.18 through 3.21, including Staging versions.
Attached log captured with:
+tid,+seh,+mmdevapi,+winmm,+driver,+msacm,+midi,+dsound,+dsound3d,+xaudio2,+xapofx,+dmusic,+mci,+pulse,+oss,+alsa,+coreaudio,+timestamp,+debugstr
Since there's a relatively clean and simple workaround with PulseAudio and
pavucontrol, I'm setting the severity to minor, but this is still functionality
loss.
BASS Audio library: https://www.un4seen.com/bass.html
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.