http://bugs.winehq.org/show_bug.cgi?id=34258
Bug #: 34258
Summary: cygwin 2.819 (64-bit) installer crashes on start
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, Installer, source, win64
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 45596
--> http://bugs.winehq.org/attachment.cgi?id=45596
backtrace
Cygwin now ships 32-bit and 64-bit installers. The 64-bit installer, however,
crashes on start:
wine: configuration in '/home/austin/.wine' has been updated.
wine: Unhandled page fault at address 0x7fcd69effc0a (thread 0044), starting
debugger...
Unhandled exception: page fault in 64-bit code (0x00007fcd69effc0a).
--
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=34236
Bug #: 34236
Summary: coverity (64-bit) installer crashes
Product: Wine
Version: 1.7.0
Platform: x86
URL: http://coverity.com
OS/Version: Linux
Status: NEW
Keywords: Installer, win64
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 45555
--> http://bugs.winehq.org/attachment.cgi?id=45555
java log
Crashes very early:
austin@aw25 ~ $ /opt/wine6432/bin/wine cov-analysis-win64-6.6.0.exe
fixme:seh:RtlAddFunctionTable 0x650170 1 650000: stub
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006dbc7009, pid=36,
tid=55
#
# JRE version: 6.0_21-b07
# Java VM: Java HotSpot(TM) 64-Bit Server VM (17.0-b17 mixed mode windows-amd64
)
# Problematic frame:
# V [jvm.dll+0x3d7009]
#
the 32-bit version installs fine in either a 32-bit or 64-bit WINEPREFIX.
I'll attach its log as well, which has some more info
--
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=31742
Bug #: 31742
Summary: jre-6u33-windows-x64.exe fails to install completely
Product: Wine
Version: 1.5.13
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tahoar(a)gmail.com
Classification: Unclassified
I tried installing jre-6u33-windows-x64.exe on wine1.5-amd64. The installer
loads and progresses through the installation. It reports a complete
installation. The Java files are istalled in "C:\Program Files\Java\jre6". The
Registry is not updated with the install information, and the
"C:\windows\system32\java.exe" file is missing.
--
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=47221
Bug ID: 47221
Summary: COleDateTime class is not 100% compatible
Product: Wine
Version: 4.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jcl(a)conitec.net
Distribution: ---
A backtest software produces a different result under Wine than under Windows.
The reason is a slightly different handling of date/time functions. I suspect
an incompatibility of the COleDateTime class member.
For reproducing the problem, install the software "Zorro" from
http://opserver.de/down/Zorro_setup.exe in its default directory. When the
Software opens, select "Workshop4" on the "Script" scrollbox, then click
"Test". Zorro will report a significantly different result under Wine than
under 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.
https://bugs.winehq.org/show_bug.cgi?id=39292
Bug ID: 39292
Summary: Chess engine Fire 4 64-bit crashes on startup.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hairy.one(a)virgin.net
Distribution: ---
Created attachment 52370
--> https://bugs.winehq.org/attachment.cgi?id=52370
Latest crash report.
I've been testing various command line chess engines and I can't get 64-bit
Fire 4 to run at all. It crashes on start-up every time. I've tried various
versions and tricks but nothing works.
The crash report attached is the latest attempt using a compliant,
freshly-installed, vanilla flavour of 64-bit Wine.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37637
Bug ID: 37637
Summary: CreateNamedPipe, ReadFile, PIPE_WAIT or BufferSize
problem
Product: Wine
Version: 1.7.30
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: den.aria(a)gmail.com
Distribution: ---
I have problem in Wine when reading data from NamePipe, when data is bigger
than 36672.
1 Create Pipe
hPipe := CreateNamedPipe(Name,
PIPE_ACCESS_DUPLEX,
PIPE_WAIT or
PIPE_TYPE_BYTE or PIPE_READMODE_BYTE,
MAX_PIPE_INSTANCES,
0,//MAX_WRITE,
0,//MAX_READ,
TIME_OUT,
@sa);
>PIPE_WAIT
>MAX_WRITE and MAX_READ can be random value, from 0 > 999999999
2 Reading data
if not ReadFile(APipe, msData.Memory^, cBuffer, cBytesRead, nil) then
begin
Exit;
end;
I got result True but not all data is read.
cBuffer > cBytesRead, ( cBytesRead = 36672 maximum)
I need do loop for reading all data from PIPE.
---------
In windows i don't have this problem.
Help me. :)
--
Do not reply 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=657
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks|23094 |
--
Do not reply 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=50609
Bug ID: 50609
Summary: Win-Test: crashes on startup
Product: Wine
Version: 6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: uschneid(a)posteo.de
Distribution: ---
Created attachment 69296
--> https://bugs.winehq.org/attachment.cgi?id=69296
Output of "wine wt.exe &> log.txt"
OS: Xubuntu 20.04 LTS on a HP Stream 11 laptop
Wine: wine-6.1
Installation of Win-Test runs fine. Win-Test contains two minor applications,
which also run fine, but the main application wt.exe crashes on startup with a
"page fault on read access". Runs fine on another computer with Xubuntu 18.04
LTS and wine-stable.
I tried:
- wine-stable from the OS repositories
- wine-stable from the WineHQ repository
- wine-devel from the WineHQ repository
Followed strictly the installation instruction. Wine directory is clean.
A free version of the program can be downloaded here:
http://download.win-test.com/v4/demo/wt-4.34.0-demo.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26833
Summary: Avatar demo: wants XAudio2_4.dll
Product: Wine
Version: 1.3.18
Platform: x86
URL: http://news.bigdownload.com/2009/11/17/download-james-
camerons-avatar-the-game-demo/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
If you remove this Microsoft dll, game has no audio (separate from bug 24639).
err:ole:COMPOBJ_DllList_Add couldn't load in-process dll
L"C:\\windows\\system32\\XAudio2_4.dll"
err:ole:CoGetClassObject no class object {03219e78-5bc3-44d1-b92e-f63d89cc6526}
could be created for context 0x1
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.