http://bugs.winehq.org/show_bug.cgi?id=17679
Summary: nhOneClick: Unhandled exception when starting
application
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support(a)ics.de
Created an attachment (id=19874)
--> (http://bugs.winehq.org/attachment.cgi?id=19874)
backtrace
this happens when starting nhoneclick after having finished a previous run with
saving the settings. Deleting the applications .ini file, so it cannot load its
preferences, prevents this crash
to reproduce:
- start application, klick OK to add servers, enter anything for the
'NewServer' name; CTRL-S to save
- Then exit application and restart. This will crash it
- Deleting the ..../users/<user>/ApplicationData/CA/OneClickEH.ini resolves
the problem.
The application is a graphical front end to a NetworkManagement Suite. I have
uploaded a copy for limited time to:
http://ftp.ics.de/outgoing/ehealth/nhOneClick.exe
I am using yesterdays build wine-1.1.16-292-g1b9a6fb
--
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=17694
Summary: Silkypix 3.0 file selector broken
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florin(a)andrei.myip.org
Running Silkypix 3.0:
http://www.isl.co.jp/SILKYPIX/english/p/
I click Open File and try to navigate to a different directory to retrieve my
RAW file and open it. Clicking on the various folders has no effect, it doesn't
enter the directory no matter whether I single-click it, double-click it or
many-click it.
The only way to navigate is to go to the drop-down element (labeled "Look In")
on top of the file selection window and pull it down - selecting a directory
there seems to work.
Here's a RAW file to test the application with:
http://dl.getdropbox.com/u/29966/wine-bugzilla/P1010588.RW2
--
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=17539
Summary: NULL pointer dereference in Metrowerks Standard Library
when CodeWarrior Pro 8.3 IDE launched with absolute
pathname
Product: Wine
Version: 1.1.4
Platform: PC-x86-64
URL: http://www.freescale.com/webapp/sps/site/homepage.jsp?no
deId=012726
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rippit(a)oggfrog.com
Created an attachment (id=19673)
--> (http://bugs.winehq.org/attachment.cgi?id=19673)
Crash Log.
First, let me say that I am *profoundly* impressed by how far Wine has come. I
tried CodeWarrior Pro 8.3 with Wine back in 2003 or so, and it didn't even come
close to working. Now it is completely usable; each of the three bugs I'll be
reporting has a workaround.
If Metrowerks CodeWarrior's IDE.exe is named on the Wine command line with an
absolute pathname, there will be a NULL pointer dereference in the Metrowerks
Standard Library DLL IDE_MSL_DLL80_x86.dll,
The crash is 100% repeatible with an absolute path, but never happens if the
IDE is launched with any kind of relative path. So the workaround it to never
use an absolute pathname.
The happy news is that the source code to the Metrowerks Standard Library is
included with CodeWarrior itself, though it's possible that the DLL that
IDE.exe links to has been patched somehow.
(The MSL is CodeWarrior's portable C and C++ standard libraries - apps built
with CodeWarrior don't normally use the ones bundled with the OS.)
The bad news is that CodeWarrior is no longer sold for building desktop
applications, just embedded ones. CodeWarrior Pro 8 is therefore hard to come
by, though it can sometimes be had used. Possibly you could reproduce the bug
with the free 30-day evaluation of FreeScale's Windows-hosted embedded
development system at the link above.
The old desktop tools publisher was Metrowerks; CodeWarrior Pro ran on both Mac
and Windows, and could produce binaries for both platforms while running on
either platform.
The following crashes every time:
wine "/home/mike/.wine/drive_c/Program Files/Metrowerks/CodeWarrior/IDE.exe"
But remove the initial slash, and it *works* every time:
cd /
wine "home/mike/.wine/drive_c/Program Files/Metrowerks/CodeWarrior/IDE.exe"
I discovered the crash by trying to write a double-clickable shell script for
use under Gnome in Fedora 10. The workaround is to use the following script
instead:
#!/bin/sh
DRIVE_C=~/.wine/drive_c
# Note that because the Program Files folder has a space in
# its name, it must be quoted.
PROGRAM_FILES="$DRIVE_C/Program Files"
( cd "$PROGRAM_FILES" ; \
/usr/bin/wine Metrowerks/CodeWarrior/Bin/IDE.exe )
My box is a Core Quad Xeon, a 5230 I think, running Fedora 10 x86_64 with 8 GB
of memory.
To set up CW 8.3, you'll need to install CW 8, then run the 8.2 and 8.3
updaters, then rebuild all the libraries. In more detail:
1. Make CD images of the two installation CDs - Windows Tools and Windows
Reference. I used the Mac OS X Disk Utility to make a CD/DVD Master image
(.cdr). I don't think it would work to make a compressed image (.dmg).
2. Create a directory that will be used as Wine's CD drive, then configure Wine
to actually use it as the CD drive. In Fedora 10, I use /media/WineD.
3. mount -o loop Tools.cdr /media/WineD
4. cd /media/WineD; wine Launch.exe
5. Do a full installation of the tools
6. umount /media/WineD
7. mount -o loop Reference.cdr /media/Wined
8. cd /media/WineD; wine Launch.exe
9. Do a full installation of the documentation
10. umount /media/WineD
11. Install the 8.2 and 8.3 updates:
12. wine CW_Pro8.2_Patch.exe
13. wine CW_Pro8.3_Patch.exe
14. After the 8.3 update, the Installer wants you to rebuild the libraries, and
offers to open the library rebuilding projects.
15. Project->Remove Object Code
16. Project->Make
After all that you'll be at the configuration with which I discovered the
crash.
--
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=17379
Summary: Fahrenheit crashes
Product: Wine
Version: 1.1.14
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lindevel(a)gmx.net
When selecting "custom" as graphic level and enabling everything but "front
buffer", Fahrenheit will be able to play the intro (flyby statue of liberty),
but afterwards it will crash with the attached log upon entering the first
scene (toilet).
--
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=17320
Summary: Endicia Envelope Manager software (DAZZLE.EXE) crashes
when going to print postage
Product: Wine
Version: 1.1.14
Platform: PC-x86-64
OS/Version: Windows 2000
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brentpicasso(a)yahoo.com
Created an attachment (id=19337)
--> (http://bugs.winehq.org/attachment.cgi?id=19337)
output of ~/.wine/drive_c/Program Files/Envelope Manager/DAZzle$ echo quit |
WINEDEBUG=+relay wine DAZZLE.EXE >& /tmp/winelog_dazzle;
Endicia's DAZZLE envelope manager software (prints postage from USPS.com)
crashes when you go to the print postage dialog.
Note, it's a dialog prior to the actual printing, where you specify package
attributes, mailiing class, etc.
wine version 1.1.14 (also occurs with stable version available with ubuntu)
OS: kubuntu 8.10 fresh install, updated packages (as of this posting)
gcc -v:
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.3.2-1ubuntu12'
--with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared
--with-system-zlib --libexecdir=/usr/lib --without-included-gettext
--enable-threads=posix --enable-nls
--with-gxx-include-dir=/usr/include/c++/4.3--program-suffix=-4.3
--enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.3.2 (Ubuntu 4.3.2-1ubuntu12)
Windows version: winecfg set to win2000
Application:
Endicia DAZZLE.exe from http://www.endicia.com (requires account since you use
it to print postage)
Repro steps:
Run DAZZLE
connect with your account
open layout, select "Large Priority Mail International Shipping Label"
Select printer from file dialog
Click the "print" button in upper left
observe crash
Any suggested work-around steps would be helpful. Any windows DLLs I can run
instead of the default?
--
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=15815
Summary: Ebook will not run in WINE 1.0 or 1.1.7
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonoaf(a)yahoo.com
Created an attachment (id=16941)
--> (http://bugs.winehq.org/attachment.cgi?id=16941)
Screen shot of Error in Ebook.
"Secrets to growing beautiful carnivorous plants for you home and garden" ebook
from www.cobraplant.com will not run in WINE. See atached photo below.
According to authors of the ebook, it does not require a password and should
run when opened. When opened, it shows the splash screen the dumps to the
screen shot.
--
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=17649
Summary: DirectX & OpenGL Steam Counter-Strike: Sources -
Artefact Fllicks & View
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: st47k3r(a)gmail.com
Created an attachment (id=19836)
--> (http://bugs.winehq.org/attachment.cgi?id=19836)
My configs & logs files
Artefacts in Steam Counter-Strike:
(Sorry for my bad english - it's not my native language)
My PC:
MB: ASUS P4-P800X
CPU: Intel Pentium 3.0 HT Prescott
GPU: ATI HD 3850 AGP 512 MB
OS: Linux Ubuntu 8.10
KERNEL: vanilla 2.6.28.7-p4ht
i'm used prevision .config to recompile kernel for my CPU (P4\Prescott) +
disable some unused modules (SCSI, Wireless and so)
i.e. without any strong modifications
ATI driver: latest Catalyst 9.2 for Linux OS
Driver filename: "ati-driver-installer-9.2-x86.x86_64.run"
FGLRX v.8.582
# xdpyinfo | grep "version"
version number: 11.0
X.Org version: 1.5.2
# uname -a
Linux PC01 2.6.28.7-p4ht #1 SMP Fri Mar 6 18:10:40 MSK 2009 i686 GNU/Linux
# fglrxinfo
display: :0.0 screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: ATI Radeon HD 3850
OpenGL version string: 2.1.8494 Release
used WINE 1.1.16 with configured CFLAGS="-march=prescott -mtune=prescott -O2"
When i start Steam Counter Strike; Soursec in full screen mode
then game run perfect, but..
i see screen flicks to fast with artefact in menu where you select weapons and
team.
What should i do to run it without this?
All logs and confgs in attachment
If needed more info(logs, configs, screenshots and so on) you may contact me in
any way, i'll be pleasure to help
Thank you! :)
--
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=16305
Summary: Spore doesn't start because my graphic card is below min
spec
Product: Wine
Version: 1.1.9
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mrgorefest(a)libero.it
Created an attachment (id=17588)
--> (http://bugs.winehq.org/attachment.cgi?id=17588)
terminal log. It's the same if I put -safe
I run Spore very good on Windows Xp on the same pc, but when I try loading it
on Ubuntu (I use the same file of Winows Xp) it tells me my card is below min
spec.
My graphic card is Intel Corporation 82915G/GV/910GL Integrated Graphics
Controller with 128 Mb of RAM.
with lspci -n it is 00:02.0 0300: 8086:2582 (rev 0e)
I have in regedit under HKCU -> Software -> Wine -> Direct3D:
DirectDrawRenderer opengl
PixelShaderMode enabled
RenderTargetLockMode auto
UseGLSL enabled
VideoMemorySize 128(I tried also setting this to 512 but it no
works)
VideoPciDeviceID 0x00002582
VideoPciVendorID 0x00008086
I did install DirectX from Microsoft website (november 2008).
As attachment I put what I see in terminal
--
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=15470
Summary: glitches on Photoscape main screen fonts
Product: Wine
Version: 1.1.5
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaab_rs(a)hotmail.com
The following happens:
- I can't see what it's written on the main screen, so it's hard for me to know
where I gotta point to in order to edit or view images.
To reproduce the error, do the following:
- Open PhotoScape
- You'll see glitces in the fonts on the main screen
--
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=15634
Summary: Windows Live Messenger won't install
Product: Wine
Version: 1.1.5
Platform: PC-x86-64
URL: http://get.live.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: el.il(a)doom.co.il
Created an attachment (id=16674)
--> (http://bugs.winehq.org/attachment.cgi?id=16674)
Terminal Output
I tried to install Windows Live Messenger 8.5 stable.
The installer won't start, and the MSI file of messenger won't install either.
--
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=21162
Summary: Still Life 2: Crash after the first animated scene
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otto_rey(a)yahoo.com.ar
Still Life 2: Crash after the first animated scene
--
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=21477
Summary: Access violation in DSOUND_RecalcVolPan
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ravenexp(a)gmail.com
Created an attachment (id=25862)
--> (http://bugs.winehq.org/attachment.cgi?id=25862)
Wine crash dump
DirectX game crashes at startup with the following error:
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x165c70,0x165b70): stub
wine: Unhandled page fault on read access to 0xffffffff at address 0x7e8959a3
(thread 0009), starting debugger...
Unhandled exception: page fault on read access to 0xffffffff in 32-bit code
(0x7e8959a3).
...
...
Backtrace:
=>0 0x7e8959a3 DSOUND_RecalcVolPan+0xa3() in dsound (0x0032f8b0)
1 0x7e882cdb IDirectSoundBufferImpl_Create+0x44b() in dsound (0x0032f920)
2 0x7e88b4a0 DirectSoundDevice_CreateSoundBuffer+0x360() in dsound
(0x0032fa00)
3 0x7e88bce7 in dsound (+0x1bce7) (0x0032fa50)
4 0x0043b47b in hana7 (+0x3b47b) (0x0000ac44)
0x7e8959a3 DSOUND_RecalcVolPan+0xa3 in dsound:
OS: Gentoo linux-2.6.31-r6 alsalib-1.0.21a
Crash dump attached.
--
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=23990
Summary: Skip unsupported MPEG streams in quartz instead of
waiting
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
There are some games, namely GTA(III, VC, SA) which show MPEG movies at startup
which need to be skipped by pressing a key, otherwise these games won't
continue startup. Every time this message appears:
fixme:quartz:MPEGSplitter_query_accept MPEG-1 system streams not yet supported.
Why not just skip these movies (reporting EOF to the app) instead of waiting
for something (a key press in this case)? It would improve usability of the
above named games and some other ones. Current behaviour could make the games
unplayable if there were no in-game way of skipping the movies.
--
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=18074
Summary: Wine rendering issues with intel chipset
Product: Wine
Version: unspecified
Platform: PC
URL: http://eveonline.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cheetahmorph(a)gmail.com
Created an attachment (id=20476)
--> (http://bugs.winehq.org/attachment.cgi?id=20476)
Screenshot showing character select screen in linux. Will add windows version
later for comparison
May be related to bug 17437
OS: ubuntu 8.10 with current patches (as of this posting)
Wine version: 1.1.19
System: Lenovo 3000 G530 laptop
in-game objects (ships, hanger, etc) do not render
The character photo in the main screen renders incorrectly
--
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=11800
Summary: WISO Sparbuch garbled printout
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: oliver.fels(a)gmx.net
Created an attachment (id=11060)
--> (http://bugs.winehq.org/attachment.cgi?id=11060)
The printout preview.
The WISO Sparbuch Tax application is showing garbled printout in the print
preview and printouts (see attachment) as well as the tax summary pages and
checklists. This is propably a font rendering issue.
Windows fonts have been copied to the windows\fonts dir as well as under
/usr/share/fonts/truetype on the Linux side and can be seen by X11.
Problem occured unter Kubuntu Gutsy Gibbon, using KDE 3.5.7.
Any hint what to additionally give as information to help solve the issue is
appreciated.
--
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=18606
Summary: Open/save file dialog "New Folder" button does not
behave as expected for non-unixfs/My Documents working
directory shell items
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
When a file dialog is opened, and a shell item that is not under the unixfs
hierarchy or is not the My Documents item is selected as the working directory,
pressing the "New Folder" button does not show a new "New Folder" icon in the
file listing and does not offer the choice of renaming the folder item, whereas
doing so under a shell item under the "/" hierarchy works properly. To
reproduce:
1. Start up Notepad and open the file open dialog.
2. Change the "Look in:" combo box selector to My Computer.
3. Select the "C:\" shell item.
4. Press the New Folder icon. The expected behavior does not occur.
--
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=13306
Summary: Swichmax 2 close in the try to export
Product: Wine
Version: 1.0-rc1
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: obelich(a)gmail.com
Created an attachment (id=13167)
--> (http://bugs.winehq.org/attachment.cgi?id=13167)
this is the error send swich max 2
Hiyas we have test the wine with swich max 2 and there have many problems firs
dont show the movie you are make and other if you try to export to swf the
progrman send error and close sorry my english is to bad i speak spanish here
are the file text send error message, and i install the flash player for
windows in wine the program say need it to install before the instalation.
--
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=12001
Summary: chemsketch won't display
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emkay(a)gmx.de
Hi since x57 chemsketch wont open its main window, when i start the app the
icon of the developer appears in the right bottom corner but there is no main
window opening in which i can use the app and i also got no wine task in my
taskbar. With wine x56 and x55 everything was fine. i attchent the errror file.
please dont ask me to do regression test i cant follow the tutorial. I already
created a fresh wine folder.
greets Emkay
Severity is major cause now the app is of no use.
--
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=19746
Summary: Adobe Reader 7 w/ FEAD installer causes a page fault
Product: Wine
Version: 0.9.40.
Platform: PC
URL: ftp://ftp.adobe.com/pub/adobe/reader/win/7x/7.0/enu/Ad
beRdr70_enu.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P3
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=23094)
--> (http://bugs.winehq.org/attachment.cgi?id=23094)
wine-1.1.27-221-g4e1a4ec console output
There are multiple downloads for Adobe Reader 7. The one in question,
AdbeRdr70_enu.exe, uses the FEAD optimizer. This version causes a page fault
during extraction.
Backtrace:
=>0 0xb7c99e00 strcpy+0x10() in libc.so.6 (0x00e3f7cc)
1 0x7bc75285 NTDLL_strcpy+0x24(dst="", src=0x0)
[/home/test/wine-git/dlls/ntdll/string.c:149] in ntdll (0x00e3f7ec)
First reported with 0.9.40 (confirmed, same bug).
Same with latest git.
--
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=23723
Summary: Multiple games from Sonalysts cannot play sound files
(stored in Sfx.agg)
Product: Wine
Version: 1.2
Platform: x86
URL: http://www.gamershell.com/download_8369.shtml
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=29727)
--> (http://bugs.winehq.org/attachment.cgi?id=29727)
rzipped +file traces
This bug affects every game from the developer Sonalysts:
Jane's 688(I) Hunter-Killer
Fleet Command
Sub Command
Dangerous Waters
Symptom: all these games are missing sound effects and voices (only music
works). The games store their sound files (.wav) in a Sfx.agg archive. Running
the games in Wine with winedebug=+file reveals that Wine cannot find the
appropriate sound files. A typical line from the log:
warn:file:OpenFile (C:\Program Files\Sonalysts Combat Simulations\Dangerous
Waters Demo\Audio\Sfx\sfx.agg+pinged.wav): return = HFILE_ERROR error= 2
Notice the path to the relevant sound file: '\sfx.agg+pinged.wav'.
Apparently in a native Windows environment it doesn't cause problems, but does
in Wine.
A 'dirty' workaround is to extract the .wavs using an utility called agg.exe,
and placing them into a directory named: sfx.agg+.
You can test the issue using the demo of Dangerous Waters, link added to URL.
--
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=18571
Summary: Top level window loses focus when selecting a menu
item
Product: Wine
Version: 1.1.21
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thunderbird2k(a)gmail.com
Hi,
For a couple of days I have been trying to locate a bug in a program I'm
working. The program itself is written in Smalltalk using Visualworks. Under
the hood Visualworks is doing all win32 gui drawing itself (it also works on
other platforms).
The program in question has a top level window on which a win32 interface is
drawn including a menu bar. Clicking on the menu bar inactivates the top level
window. I have been debugging it for some days and I think it is somehow
related to SetFocus. Disabling all SetFocus / SetForegroundWindow calls in
user32 appears to make the issue disappear. The app itself only calls SetFocus
but Wine itself makes SetForegroundWindow calls.
The menu window has WS_POPUP and WS_DISABLED set (the top level window also has
WS_DISABLED set). Further Alexandre suspects there is something wrong with the
focus handling code in case of WM_MOUSEACTIVATE.
I have uploaded a test app which illustrates the problem to: (note the server
isn't always online) http://roderick.student.utwente.nl/menutest.tar.gz
I have also attached a log of +win,+msg to here. The app window is called
'vwnt'.
Regards,
Roderick
--
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=16736
Summary: kernel32/format_msg.c: compiler errors
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
austin@ubuntu-ppc:~/wine-git/dlls/kernel32$ make
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_KERNEL32_
-D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g
-O2 -o format_msg.o format_msg.c
format_msg.c: In function ‘FormatMessageA’:
format_msg.c:140: warning: unused variable ‘args’
format_msg.c: In function ‘FormatMessageW’:
format_msg.c:361: warning: unused variable ‘args’
format_msg.c: At top level:
format_msg.c:71: warning: ‘load_messageW’ defined but not used
format_msg.c:101: warning: ‘load_messageA’ defined but not used
Looking at the code:
{
LPDWORD args=(LPDWORD)_args;
#if defined(__i386__) || defined(__sparc__)
/* This implementation is completely dependent on the format of the va_list on
x86 CPUs */
Seems this needs to be implemented for non-x86/sparc
--
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=10366
Summary: EAccess Violation in winex11.drv when printing
Product: Wine
Version: 0.9.48.
Platform: PC
URL: http://www.gestionaleopen.it/
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alessandro.marraccini(a)lunet.it
when I try to print anything from "Gestionale Open" I receive an "EAccess
Violation" in winex11.drv.
Can You help me?
Buona Vita
Alessandro Marraccini
--
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=18376
Summary: msxml3 crash when running office 2007 sp1 installer
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mike.kaplinskiy(a)gmail.com
CC: mike.kaplinskiy(a)gmail.com
Created an attachment (id=20950)
--> (http://bugs.winehq.org/attachment.cgi?id=20950)
msxml crash log
The office 2007 sp1 installer crashes with the following output in msxml3.
Using native msxml3 fixes the problem, but doesn't quite get the updates
installed (for another bug).
(To make the installer at least get to this point, apply
http://www.winehq.org/pipermail/wine-devel/2009-May/075385.html on top of
current git)
--
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=15349
Summary: Spore crashes when leaving water
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jufofu(a)yahoo.com
After leaving water (water evolution stage plays okay) and seeing the evolution
line, Spore crashes.
--
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.