https://bugs.winehq.org/show_bug.cgi?id=38432
Bug ID: 38432
Summary: Xeon (Xbox emulator) fails to run - invalid address
Product: Wine
Version: 1.7.41
Hardware: x86
URL: http://www.emulator-zone.com/doc.php/xbox/xeon.html
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: ---
User asked about it in #winehq, appdb shows old results (failed in 1.1.29:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=17840
But it appears to have the same issue now as then:
austin@debian-home:~/x$ wine Xeon.exe
wine: Invalid address.
austin@debian-home:~/x$ file Xeon.exe
Xeon.exe: PE32 executable (GUI) Intel 80386, for MS Windows
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19801
Summary: cygwin can't run a batch file from inside a shell
script without explicit cmd /c
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Given the batch file foo.bat containing
echo FOO
and the shell script 'foo.sh' containing
./foo.bat
the command
./foo.bat
interactively will output
FOO
on both cygwin/windows and cygwin/wine, but the command
sh foo.sh
will produce
FOO
on cygwin/windows but will fail on cygwin/wine saying
foo.sh: line 1: ./foo.bat: permission denied
This happens both in an interactive cygwin shell started under wineconsole,
as well as the naked command
$ wine ~/.wine/drive_c/cygwin/bin/sh foo.sh
which sometimes says permission denied, and sometimes says "bad address", e.g.
foo.sh: line 1: ./foo.bat: Bad address
13 [main] sh 50! _cygtls::handle_exceptions: Error while dumping state
(probably corrupted stack)
foo.sh: line 1: 50 Segmentation fault (core dumped) ./foo.bat
So the "permission denied" error might be a symptom of a crash, too.
This was found while trying to automate the chrome and firefox build
setup procedures.
--
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=40062
Bug ID: 40062
Summary: Media Player Classic Home Cinema does not show bitmaps
in buttons
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: carlo.bramix(a)libero.it
Distribution: ---
Created attachment 53540
--> https://bugs.winehq.org/attachment.cgi?id=53540
MPC-HC running on WINE.
Run MPC-HC with WINE
Select to display the options from the menu.
Go to the formats page.
Here there are 4 buttons on the right decorated with bitmaps, but WINE does not
show them.
See attached screenshots, compare results between WINE and Windows.
Tested with MPC-HC version 1.7.10.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42602
Bug ID: 42602
Summary: ::CompareItem(LPCOMPAREITEMSTRUCT lpCompareItemStruct)
bad sort compared to Windows
Product: Wine
Version: 2.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: martin(a)hinner.info
Distribution: ---
Let's have this MFC code:
class CIconListBox : public CListBox
...
int CIconListBox::CompareItem(LPCOMPAREITEMSTRUCT lpCompareItemStruct)
{
CIconListBoxItem *Item1;
CIconListBoxItem *Item2;
Item1=(CIconListBoxItem *)lpCompareItemStruct->itemData1;
Item2=LastItem;
/*
CompateItem is called immediately after AddString which does not contain
any info for sorting. Pointer to data is set after AddString by calling
SetItemDataPtr.
This function thus relies on undocumented fact that Item2 is always last
added item.
Item1 has correct pointer..
*/
//Item2=(CIconListBoxItem *)lpCompareItemStruct->itemData2;
//nejdriv rozhodne priorita
if (Item1->m_sortprior>Item2->m_sortprior)
return -1;
if (Item1->m_sortprior<Item2->m_sortprior)
return 1;
if (wcscmp(Item1->m_szItemName,Item2->m_szItemName)>0)
return 1;
else return -1;
}
Result in Windows: sorted OK
Result in Wine: reverse sorted.
I can provide app for testing. It is http://obdtester.com/downloads (e.g.
BimCOM), password for download upon request by individual e-mail.
--
Do not reply 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=18734
Summary: DlgDirList(DDL_DRIVES|DDL_DIRECTORY) on 16-bits
displays files on listbox in Windows but not Wine.
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, patch, source, win16
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a_villacis(a)palosanto.com
Created an attachment (id=21484)
--> (http://bugs.winehq.org/attachment.cgi?id=21484)
Screenshot of problem (QEMU virtual session and Wine, side by side)
When an 16-bit Windows application displays a listbox and manually fills it
with DlgDirList (not as a part of a Common Dialog), the flag combination
DDL_DRIVES|DLL_DIRECTORY should make files appear according to the set filter.
Wine does not do this, as it (incorrectly) appends DDL_EXCLUSIVE to the bitmask
of flags before delegating to 32-bit code.
--
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=21404
Summary: winedbg does not support fixed host:port parameter
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: myvonkpos(a)mweb.co.za
If using winedbg to debug Windows apps in a Linux IDE is to become practical
winedbg --gdb --no-start needs an extra parameter to specify a fixed host:port
TCP connection, similar to what gdbserver has. Currently the port is chosen at
random, which means IDEs have to be reconfigured on every debug attempt.
--
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=39078
Bug ID: 39078
Summary: Visual Pinball 9.9.1 crashes on exit after creating a
new table
Product: Wine
Version: 1.7.49
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
Download of Visual Pinball 9.9.1 here:
http://emulationrealm.net/downloads/file/33-visual-pinball
$ openssl sha1 "VPinball991_Full.zip"
SHA1(VPinball991_Full.zip)= aafbd3c28af31ec4a993e0fe59a77374e5895572
Steps to reproduce:
1. Download installer and install the game.
2. Start the game.
3. Select File > New.
4. Select File > Exit.
wine --version
wine-1.7.49
--
Do not reply 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=24374
Summary: Driller fails to run
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://download.ovinebydesign.com/driller/download.asp
x
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=30720)
--> (http://bugs.winehq.org/attachment.cgi?id=30720)
terminal output
Driller is a freeware remake of a classic 3D adventure game, which was quite
popular in the 8-bit computer era.
The standalone executable Driller.exe fails to run in Wine, showing only a
messagebox, saying:
'Error! User lib not found', then it quits.
I can't verify how it behaves under a native Windows environment because I have
no Windows installed. According to the developer's page the game is Vista
compatible.
I'm not sure it has something to do with the issue, but the Driller.exe is
packed/protected(?) by Molebox Ultra. That is some kind of virtualization which
helps creating portable applications.
Fedora 13
Nvidia 7600 / driver 256.53
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42669
Bug ID: 42669
Summary: SolveigMM Video Splitter Business Edition v6.1:
Crashes when opened
Product: Wine
Version: 2.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeroentorchmaster(a)gmail.com
Distribution: ---
Created attachment 57620
--> https://bugs.winehq.org/attachment.cgi?id=57620
Bug file outputted by Wine
(Wine-staging 2.3)
Installed, then opened the program. GUI shows up, then crashes.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40694
Bug ID: 40694
Summary: Invalid behavior of "C: && echo haha" or "C: & echo
haha"
Product: Wine
Version: 1.9.10
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: fracting(a)gmail.com
Distribution: ---
On Windows, all of "C: && echo haha", "C: || echo haha", "C: & echo haha" works
fine.
On Wine, this kinds of command line generates an error of "Can't recognize 'C:
' as an internal or external command, or batch script."
Found by neovim developer: https://tea-ci.org/equalsraf/neovim/39
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.