http://bugs.winehq.org/show_bug.cgi?id=33767
Bug #: 33767
Summary: Wine 1.41 is un-able to complete installation of
Comodo Firewall latest version with Linux Mint 14,
14.1 and 15
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jakobneubert(a)fastmail.fm
Classification: Unclassified
when installing "comodo Firewall" on Wine 1.41 then it is un-able to complete
installation for the firewall and teh Virtual Comodo Browser (so 2 out of 4
apps in the install file Wine is not able to handle).
Are special settings or installation needed? Out of 5 programs i tried to
install with wine then only succcedded with 2 of them so will it be a few moe
years before Wine has ironed out enough bugs to be able to install commecial
software - or, should I have used special settings?
--
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=28026
Summary: chromium crash if --no-sandbox hasn't set
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
1. Download chromium from
http://build.chromium.org/f/chromium/snapshots/Win/95816/chrome-win32.zip
unpack chrome-win32.zip, cd to the directory.
2. start chrome.exe:
$ wine chrome.exe
chrome will crash without backtrace. A error box will ask you to restart
chrome.
if --no-sandbox is set, then chrome will start without crash, this is similar
to Bug 21232.
--
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=21490
Summary: Debug build of Chromium aborts on startup because
GdiInitializeLanguagePack() returns failure
Product: Wine
Version: 1.1.32
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, patch, source
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This was mentioned in passing in bug 20671.
You can run a debug build of Chromium on Wine with --no-sandbox,
but you have to get GdiInitializeLanguagePack to return success
first, or it will abort early with
[41:42:5571:FATAL:render_process.cc(62)] Check failed: gdi_init_lpk.
The patch attached to bug 20671 does the trick.
http://m-a-tech.blogspot.com/2009/04/emf-buffer-idiocracy.html
explains why Chrome calls that function; it's needed to make native behave.
--
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=34444
Bug #: 34444
Summary: Wine web
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zorw2016(a)ymail.com
Classification: Unclassified
The Web page
http://www.winehq.org/download/ubuntu
is out of Date =) it has Wine 1.5 latest on there and i know there is 1.7.1 out
so for those that Want ur alsome experience of ur Program lets teach them how
to Install wine 1.7 or 1.6 so they can get the full experience of Wine so they
don’t have to worry about some stuff not work-in for them and have a lot of
Reports to Save =) peace
--
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=13481
Summary: ChangeDisplaySettings can't set *only* BPP
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P4
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rolf(a)neuberrosoft.de
Created an attachment (id=13402)
--> (http://bugs.winehq.org/attachment.cgi?id=13402)
Test case, w Makefile and full NetBeans project tree
Given an "incomplete" DEVMODE structure, with no fields set except for
dmBitsPerPel, and the corresponding flag in dmFields (i.e.
dmFields=DM_BITSPERPEL), ChangeDisplaySettings as implemented in Wine doesn't
replicate the behaviour of a real Windows system correctly.
A real Windows system happily executes the call and returns
DISP_CHANGE_SUCCESSFUL. Display bit-depth will be adjusted, if it was different
to begin with, while the remaining parameters stay as they were. After the
call, resolution and refresh are still whatever the user selected as the
desktop resolution. Even on 2k/XP, which are sometimes happy to drop the
refresh rate to 60Hz, the refresh rate remains constant, which is one of the
reasons I found this type of call to be useful sometimes.
I've tested this today with a MingW-built executable, and found the above to be
accurate for Windows 98SE, Windows 2000 SP4 and Windows XP SP2, irrespective of
whether the initial desktop bit depth is 16 bit or 32 bit.
On Wine (wine-1.0-rc2 on Ubuntu 8.04), the very same call to
ChangeDisplaySettings, made from the same executable, will fail with a return
code of -2 (DISP_CHANGE_BADMODE).
I've attached my test case. It will make the call and pop up a message box with
the results of the call.
I used the i586-mingw32msv-gcc compiler provided by the "mingw32" package in
the official Ubuntu repositories.
The project was set up in NetBeans 6 so the Makefile is somewhat convoluted,
but it doesn't appear as if the build process requires NetBeans. Just
navigating to the directory and running make seems to work. The executable ends
up in dist/Debug/GNU-Windows/.
Priority of the bug isn't high. I've used it in some graphics-library code, but
only in debug builds for my own testing purposes. I'm not aware of publically
available shipping programs that hit on this. Reported anyway, for
correctness's sake.
The app-level workaround is to query the current desktop mode and fill in the
DEVMODE structure more completely. Beyond the scope, but you get the idea.
I'm new to this Bugzilla stuff, so if I forgot some vital piece of info, please
be gentle. I want to be helpful.
--
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=26256
Summary: wine64-preloader can't handle setcap cap_net_raw+epi
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: source, win64
Severity: normal
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
sudo setcap cap_net_raw+epi /usr/local/bin/wine64-preloader
leads to:
/usr/local/bin/wine64: error while loading shared libraries: libwine.so.1:
cannot open shared object file: No such file or directory
err:process:start_wineboot failed to start wineboot, err 1359
/usr/local/bin/wine64: error while loading shared libraries: libwine.so.1:
cannot open shared object file: No such file or directory
and no 64-bit app can start.
setcap is needed for e.g. ICMP functions or my not yet published wpcap proxy
dll.
--
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=21349
Summary: Python.exe crashes
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jackson+winehq-bugzilla(a)jacksonc.com
Created an attachment (id=25706)
--> (http://bugs.winehq.org/attachment.cgi?id=25706)
Wine debug output
When Python 2.6.4 runs a packaging application called "PyInstaller" it crashes.
It's been working fine, except this is the first time it's been using the audio
libraries listed. eg. Phonon/Quartz. I tried running this in Windows 7, and it
works fine.
--
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=34279
Bug #: 34279
Summary: Project I.G.I: crashes when starting game
Product: Wine
Version: 1.7.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dieterm57(a)googlemail.com
Classification: Unclassified
Created attachment 45638
--> http://bugs.winehq.org/attachment.cgi?id=45638
crash log
The installation runs pretty much ok, besides crashing when opening the folder
containing the crated links for the game.
Now when I try to run the game, it does not start at all.
See the attached logs for further information.
I already tried fiddling around with the windows version in winecfg and
installing a directx runtime.
Btw the installation of the provided dx7 runtime fails with the same error.
Thanks for any advise.
--
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=33655
Bug #: 33655
Summary: Magic MP3 Tagger crashes after adding a file
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: f.ebner94(a)gmail.com
Classification: Unclassified
Created attachment 44547
--> http://bugs.winehq.org/attachment.cgi?id=44547
Crash log
The program needs winetricks vb6run
The crash happens a few seconds after adding a single MP3 file.
fabian@Arcane:~/Downloads> sha1sum magic_tagger.exe
23bd79b721a695138d3a36e152181a34320ae384 magic_tagger.exe
fabian@Arcane:~> wine --version
wine-1.5.31
--
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=24700
Summary: Explorer++ doesn't open command prompt windows
properly
Product: Wine
Version: 1.3.4
Platform: x86-64
URL: http://www.explorerplusplus.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31211)
--> (http://bugs.winehq.org/attachment.cgi?id=31211)
Terminal output
To reproduce, navigate to C: (or any directory) and click the "open command
prompt" icon in the upper toolbar.
If the program was started via a GUI (e.g. double-clicking its executable in a
native file manager), the icon doesn't appear to do anything.
If the program was started from a terminal, the command prompt appears in that
terminal window. After closing the program, the terminal needs to be reset to
work properly.
In Windows, the command prompt appears in a new window.
--
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=22788
Summary: OriginPro 8.0 under Lucid Lynx
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yann.roche(a)voila.fr
OriginPro 8.0 crashes at start (with a "program must close, etc." window) with
Ubuntu 10.04. Note it started before Ubuntu upgrade (9.10)
--
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=13347
Summary: dogfood: skype only works in "Win95" mode
Product: Wine
Version: 1.0-rc1
Platform: Other
OS/Version: other
Status: NEW
Severity: major
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marcus(a)jet.franken.de
The windows Skype in win XP mode crashes with
trace:seh:raise_exception code=c0000005 flags=0 addr=0x593ad1
trace:seh:raise_exception info[0]=00000000
trace:seh:raise_exception info[1]=ffffffff
trace:seh:raise_exception eax=000000ad ebx=000000ad ecx=000007c8 edx=0033fcd0
esi=00000000 edi=01ca0460
trace:seh:raise_exception ebp=00000000 esp=0033fcd0 cs=0023 ds=002b es=002b
fs=0063 gs=006b flags=00210202
trace:seh:call_stack_handlers calling handler at 0x48bd29 code=c0000005 flags=0
wine: Unhandled page fault on read access to 0xffffffff at address
0xffb4a51e:0x00593ad1 (thread 0009), starting debugger...
and the instruction there is a int 0x2e, which is not handled.
When setting the Windows version to Win95, Skype.exe works wonderful (buyt
displays other warnings).
=> Skype Should work in XP mode too.
=> Or we should set the default cversion for Skype.exe to Win95 in our registry
--
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=31376
Bug #: 31376
Summary: Melodine Studio crash on start
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: el.shupacabras(a)gmail.com
Classification: Unclassified
Melodine found in wine 1.0 only, since 1.2 crash on start
--
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=31313
Bug #: 31313
Summary: Can't load Checkpoint console-Program Error
Product: Wine-gecko
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: rimifrank(a)yahoo.com
Classification: Unclassified
Created attachment 41148
--> http://bugs.winehq.org/attachment.cgi?id=41148
Can't load Checkpoint-Program Error
After checkpoint installation using wine, I am not able to load it. It gives me
a Program Error Message as shown in the attachment made.
Please assist me on this.
--
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=31217
Bug #: 31217
Summary: bug hitman
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.echeveste(a)gmail.com
Classification: Unclassified
Created attachment 40992
--> http://bugs.winehq.org/attachment.cgi?id=40992
I don't know what is this backtrace. I only know it deals about errors from
Hitman Blood Money
I cannot play Hitman Blood Money. Moreover, I have got the commercial DVD.
Thank you.
And keep going. You do great job.
--
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=30866
Bug #: 30866
Summary: Error when install corel draw x4 at wine 1.5 in linux
mint 12
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ade_husien(a)yahoo.com
Classification: Unclassified
This can cause by a problem in the program or a deficiency in wine. You may wnt
to check the application database for tips about running this application
--
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=18101
Summary: when trying to start a new game, a file called
"default.tot" starts to grow in size arbitrarily
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: simulcra(a)uchicago.edu
CC: simulcra(a)uchicago.edu
"default.tot" is a generally problematic file in various infinite engine games
(there are various bugs out there, generally related to character creation).
For example, for baldur's gate 2, sometimes you can have a problem trying to
save a game because of a presence of a 0-byte file called "default.tot" in the
tempsave/ directory. Deleting it will allow a save, though the game will
create a new 0-byte default.tot file almost immediately (a more permanent hack
to fix this is to mkdir tempsave/default.tot).
Icewind Dale 2 has a problem with default.tot in which in previous versions of
wine, tryign to create a party with more than 1 character at the start will
result in a crash, related to a defaul.tot issue (in some versions of wine, an
actual error message would pop up).
Starting with 1.1.18, the issue has become drastically more severe. *Any*
attempt at creating a new party will result in the game creating a default.tot
file, and instead of leaving it at 0-bytes, it will begin to grow it
arbitrarily while the game is stuck at the loading screen. I've seen it go up
to 500 megabytes in size before finally doing a wineserver -k to quite the
Icewind Dale 2 process. Doing the Baldur's Gate 2 hack (creating an empty
default.tot/ directory to block the reation of the file) lets the game get past
its original lock point, but then will lock up anew after the loading screen
finishes.
I'm currently running some regression tests to see when this bug got
introduced, so stand by.
--
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=31481
Bug #: 31481
Summary: Wine unable to locate DLL file
Product: Wine
Version: 1.4.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: subhan_ahmed(a)hotmail.com
Classification: Unclassified
I am trying to run an exe file, located on a USB. the required dll is on USB as
well. what exactly happening is when i run exe file wine promtps a message
saying:
Cannot find XXXXX.DLL, Application cannot start. This instance is exiting.
just to clarify a bit more: USB Contains:
abc.exe
XXXXX.DLL
YYYYY.DLL
ZZZZZ.DLL
can someone help?
I have also tried copying this DLL to the system, system32 and Common Files.
also i can see USB device under dosdevices and tried running this exe file from
there but still same error message.
Thanks
Wine 1.4.1 (compiled/installed from source code)
OpenSUSE 11.3
Kosole output is:
fixme:advapi:RegisterEventSourceW ((null),L"LCK"): stub
fixme:advapi:ReportEventSource(0xcafe4242,0x0004,0x0000,0x43000001,(nil),0x0000,0x00000000,
(nil),(nil)):stub
------------- then Error message box was displayed ---- after clicking ok
following line added to the konsole-------
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
DLL name is SXPKIDLL.DLL
if you want to know anything else about the configurations, let me know.
--
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=31474
Bug #: 31474
Summary: Sim City 4 crashes upon opening with wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: droopylector420(a)gmail.com
Classification: Unclassified
Created attachment 41374
--> http://bugs.winehq.org/attachment.cgi?id=41374
page fault on write access
When I try to run Sim City 4 with wine it doesn't open and I get a program
error message.
--
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=31061
Bug #: 31061
Summary: Black & White 2 1.2: completely black screen
Product: Wine
Version: 1.5.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markus(a)bytenirvana.de
Classification: Unclassified
Starting Black & White 2 from the command line gives a completely black screen
with audio only and hundreds of this lines:
err:d3d:context_set_draw_buffer >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502)
from glDrawBuffer() @ context.c / 1942
Navigating to the exe with wine explorer and starting it with doubleclick gives
the error message "Internal error"
--
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=29867
Bug #: 29867
Summary: racepro cannot login server not responding error
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fast.rizwaan(a)gmail.com
Classification: Unclassified
Created attachment 38814
--> http://bugs.winehq.org/attachment.cgi?id=38814
race-pro in linux with wine 1.4rc3
before wine 1.4rc, racepro was connecting to server and working as expected.
Now, I'm getting only server not responding error (hinting internet
connectivity issues with the software)
Racepro, requires Java runtime (jre) perhaps it is java runtime unable to use
internet in wine 1.4rc.
How to reproduce:
1. install jre for windows (download:
http://www.java.com/en/download/manual.jsp)
2. install race pro (direct:
https://rally.religaresecurities.com/stsb/presentationlayer/racepro.msi or (web
page: https://rally.religaresecurities.com/stsb/presentationlayer/Login.ASP))
3. on launching the app, switch to logon dialog
4. type say "n150123" and 'any wrong password' (please do not type 3 wrong
passwords with single user, so use n150123, n160121, n160750 users or range in
between)
5. the 'messages' status bar should show 'invalid password: Login failed'
6 but we are getting 'server not responsing: fttrading.religaresecurities.com'
which is unexpected.
--
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=26213
Summary: Unimplemented CMDID's
Product: Wine
Version: 1.3.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: john.solomon(a)indysoft.com
Created an attachment (id=33417)
--> (http://bugs.winehq.org/attachment.cgi?id=33417)
terminal log when launching ecabinet program.
Unimplemented cmdid's and other functions when launching ecabinets software.
--
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=31125
Bug #: 31125
Summary: game line of sight Vietnam crashes after intro
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: georgemnr8(a)gmail.com
Classification: Unclassified
Created attachment 40860
--> http://bugs.winehq.org/attachment.cgi?id=40860
i assume it is a list of what crashed
after initial intro and game start being the game starts with the character
being introduced to what is going on in the game in the bottom right hand
corner a right arrow needs to be clicked to enter the game, after clicking that
arrow the game 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.
http://bugs.winehq.org/show_bug.cgi?id=30925
Bug #: 30925
Summary: cities xl 2012 crash after playing several minutes on
mac
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hazem.kassabji(a)gmail.com
Classification: Unclassified
I installed Cities xl 2012 on i mac with a lot of patches and mods.
the game was working perfectly for about a month. Now it is cashing after few
minutes because of WINE ERROR!
it's not saying what error is it! instead it will give this website and asks me
to submit bug as it was not reported on mac before.
there is no error number nor description!
--
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=25025
Summary: Problems with SimCity 4 Continue on 1.3.6
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jwinterton(a)ezlink.ca
CC: wine-bugs(a)winehq.org
Created an attachment (id=31722)
--> (http://bugs.winehq.org/attachment.cgi?id=31722)
Console log capture
This is an additional log. I was unable to locate the original report.
wine 1.3.6 continues to have problems with small video memory, and fails to
properly render scenes when stressed. I believe it is a failure to dump the
memory in a timely fashion before a refresh. This is an on-going problem which
I think has been previously reported.
GPU GeForce4 MX Integrated GPU
Type AGP 4x
RAM 128 MB
Frequency 199 MHz
Description: Ubuntu 10.04.1 LTS
Release: 10.04
nvidia-96:
Installed: 96.43.17-0ubuntu1
Candidate: 96.43.17-0ubuntu1
Version table:
*** 96.43.17-0ubuntu1 0
500 http://ca.archive.ubuntu.com/ubuntu/ lucid/restricted Packages
100 /var/lib/dpkg/status
--
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=31472
Bug #: 31472
Summary: Lg install for modem drivers on ubuntu 11.10 with Wine
1.5
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support(a)directcomputerbuilders.com
Classification: Unclassified
Created attachment 41370
--> http://bugs.winehq.org/attachment.cgi?id=41370
Lg modem drivers install
when installing lg drivers for phone as modem no matter what it closes with
error
attached backtrack file
--
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=31240
Bug #: 31240
Summary: STATISTICA: wine crashes when traying to perform
statistical analysis
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: milagrosrodriguezc(a)gmail.com
Classification: Unclassified
I run wine 1.4. When using STATISTICA I can not perform analysis on my
data,wine crashes. An also it is not possible to see variables when selecting
any type of statistical analysis or graphic.
This are the last lines I get in the console:
wine: Unhandled page fault on read access to 0x00000002 at address 0x7e2fca78
(thread 0009), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7bc47ab5
Is this possible to fix?
--
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=31134
Bug #: 31134
Summary: NBA 2K12 freeze at home menu
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ktk241992(a)aol.com
Classification: Unclassified
I just downloaded NBA 2K12 and every time I try to start the game is freezes at
the home menu. The intro video works perfectly fine and then once it loads up
the home menu it freezes. I've provided a screen cap of the problem.
I run a Mac OS X 10.5.8
Any help would be 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=30898
Bug #: 30898
Summary: Age of Empires Rise of Rome doesn't work on xubuntu
12.04.
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: story.jerry(a)gmail.com
Classification: Unclassified
Created attachment 40506
--> http://bugs.winehq.org/attachment.cgi?id=40506
This is what happened when I tried to run Age of Empires Rise of Rome on
xubuntu 12.04.
Age of Empires Rise of Rome doesn't work on the latest version of wine and the
latest version of xubuntu 12.04. AOE worked just before I upgraded to xubuntu
12.04.
--
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=30613
Bug #: 30613
Summary: Cisco Packet Tracer: Modal error messages are blank on
Command+Tab
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adman.com(a)gmail.com
Classification: Unclassified
Cisco Packet Tracer version 5.3.0.0088 with Wineskin Wine Engine 1.5.0
Error messages appear normally when tabbing to the next field. When Command+Tab
ing to another program mid-text-entry, a modal error dialog appears with a
blank window, only solution is to kill the program without saving.
Log file:
fixme:win:FlashWindowEx 0x32db68
fixme:win:FlashWindowEx 0x32d768
fixme:win:FlashWindowEx 0x32d8c8
fixme:win:FlashWindowEx 0x32d918
fixme:win:FlashWindowEx 0x32da08
fixme:msg:pack_message msg 80 (WM_SETICON) not supported yet
fixme:msg:pack_message msg 80 (WM_SETICON) not supported yet
fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub
fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub
fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub
fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub
fixme:win:FlashWindowEx 0x329018
fixme:imm:ImmReleaseContext (0x200c6, 0x1805d0): stub
fixme:win:FlashWindowEx 0x3298b8
fixme:win:FlashWindowEx 0x325dc8
fixme:imm:NotifyIME IMC_SETCANDIDATEPOS
fixme:win:FlashWindowEx 0x329738
--
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=24448
Summary: Glide Napalm WX plugin fails to properly load ini
file.
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: LordHDL(a)yahoo.com
Created an attachment (id=30843)
--> (http://bugs.winehq.org/attachment.cgi?id=30843)
Dependency Data
Upon loading the Project64 emulator with either the stable release or WIP
release of the Glide Napalm WX video plugin, the ini file used for its
configuration does not load. The error also appears when attempting to
configure plugin-specific details. Dependencies are installed.
--
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=15723
Summary: A text error for Content Composer
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neil.mulcahy(a)gmail.com
After loading content composer the text was invisible and it came into view
when highlighted and also the word wrap was not working.
the error i was getting is this one.
fixme:richedit:RichEditWndProc_common EM_FORMATRANGE: stub
i used winetricks to get riched20 and it did not fix anything. then i used
winetricks to get riched30 and the text came into view and the word wrap
started working but the right click menu has now gone away.
--
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=31469
Bug #: 31469
Summary: Need for Speed Porsche 2000 crashes on startup
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maths57gothe(a)yahoo.se
Classification: Unclassified
It's not possible to start the application.
--
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=31464
Bug #: 31464
Summary: Authors error
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: seotaewong40(a)gmail.com
Classification: Unclassified
There are errors in the credits.
Bernd Buschinski comes after Alex Busenius, not before Luis Carlos Busquets
Pérez.
Marcelo Duarte comes after Josh DuBois.
Per Ångström and Peter Åstrand comes before Riszanyi Zsolt.
Please update the authors file to have more authors.
--
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=31454
Bug #: 31454
Summary: I am attempting to run a Ham Radio programming program
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kd7sjt(a)gmail.com
Classification: Unclassified
Created attachment 41346
--> http://bugs.winehq.org/attachment.cgi?id=41346
The backtrace file that was automatically generated from WINE
Ham Radio Programming Software for the ID-880H Ham Radio.
--
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=31315
Bug #: 31315
Summary: PATCH:size optimization for gdi32/font.c testcase
Product: Wine
Version: unspecified
Platform: x86
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: testcases
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: swight1423(a)gmail.com
Classification: Unclassified
Created attachment 41150
--> http://bugs.winehq.org/attachment.cgi?id=41150
patch for gdi32/font.c
This is patch was for ReactOS trunk revision 56964 and I was redirected to post
the bug here. Sorry that I don't know what Wine revision they are on. The file
in question is in the link below:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/gdi32/font.c?re….
Basically it is to reduce a bit of the redundant code in that file. Managed to
trim off about 77 lines of code.
Please make sure to review the code before applying as C/C++ is not my native
programming language and I do not have a proper development environment set up
for ReactOS development yet so this is untested. Lastly I don't have the
software handy for a diff so I posted the whole file.
--
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=31175
Bug #: 31175
Summary: 3D Custom Girl doesn't start
Product: Wine
Version: 1.5.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pastorrub(a)msn.com
Classification: Unclassified
Created attachment 40941
--> http://bugs.winehq.org/attachment.cgi?id=40941
The log
The game crashes while showing a Japanese error dialog
--
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=31139
Bug #: 31139
Summary: issue installing sonar 8
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrea.studio.1984(a)gmail.com
Classification: Unclassified
Created attachment 40878
--> http://bugs.winehq.org/attachment.cgi?id=40878
error log
the error message occour during sonar 8 installation (original files from cd)
it happens almost at start then when you close the error windows installation
continue apparently normal.
sonar seems to work after installation but don't know if any in-dept component
will be 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.
http://bugs.winehq.org/show_bug.cgi?id=31136
Bug #: 31136
Summary: crash using Radmin-Viewer msi-installer
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: noragen(a)gmx.net
Classification: Unclassified
Created attachment 40870
--> http://bugs.winehq.org/attachment.cgi?id=40870
Backtrace of the crash
wine msiexec /i rview32de.msi
See attachment for details.
However I cannot install the rview32.exe as well from radmin.com probably
because of this error...
Thx in advance!
--
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=31133
Bug #: 31133
Summary: cnc3 required module
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keghn(a)netscape.net
Classification: Unclassified
hi.
Installed wine on ubuntu 12.04 and also on another partition
that had mint 13. I ran cnc3.exe on each os and got the
same error message:
a required security module cannot be activated. this program cannot be
executed (3000)
--
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=29419
Bug #: 29419
Summary: Total War: Shogun 2 virtually freezes with certain
graphics on screen
Product: Wine
Version: 1.3.34
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maquis196(a)yahoo.co.uk
Classification: Unclassified
Created attachment 38076
--> http://bugs.winehq.org/attachment.cgi?id=38076
Brief part of the error messages
At certain points during the game (seemingly random with whats on screen) the
game will suddenly drop to single digit fps. With the attached output pouring
into console.
Only quitting the game get's rid of it, and the same point in the game works as
usual.
Is there any settings I can change that would work around this?
--
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=25810
Summary: Dead Space crashes while rendering "chapter complete"
text if input event was emited on fglrx.
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: NightNord(a)gmail.com
Created an attachment (id=32891)
--> (http://bugs.winehq.org/attachment.cgi?id=32891)
WINEDEBUG="+dinput,+d3d9,+d3dx" log
It's very strange bug: it's obviously related to fglrx (failing function in
backtrace is in fglrx), but xinput also involved - only workaround for this bug
is to:
1) play on "low" settings
2) don't move and don't press any key, after initiating chapter change. (May
not work in some circumstances, but pressing keys makes bug 100% reproducible).
I've done WINEDEBUG="+dinput,+d3d9,+d3dx" log, truncated to 1000 lines from
both sides.
In case of success game renders glowing text "chapter complete", which then sr
What should be rendered in case of success, you may see on
http://www.youtube.com/watch?v=qI5AJZv9hww ~3:41 - except some text decorations
and other effects (only text is rendered).
In case of failture sound glitches for a seconds and then continues with
"chapter complete" sequence, but image is frozen.
Probably somehow connected to bug with missing text decorations.
System parameters:
fglrx: 10.12, HD4570
wine-1.3.11 with INTZ support commit reverted (bug #25747), but exists on all
tested versions (almost all from 1.3.6 to 1.3.11)
registry tweaks and winetricks: only VideoMemorySize.
--
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=23270
Summary: GTA2 options menu item broken - CreateProcess runs
wrong executable
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Start the game, press esc to skip the intro, then select Options.
You expect to be in an options menu, but instead you're left with the
game minimized, staring at a console.
+process log shows
trace:process:CreateProcessW app (null) cmdline L"GTA2 Manager.EXE"
trace:process:find_exe_file looking for L"GTA2"
trace:process:find_exe_file Trying native exe L"C:\\Program Files\\Rockstar
Games\\GTA2\\GTA2.exe"
trace:process:CreateProcessW starting L"C:\\Program Files\\Rockstar
Games\\GTA2\\GTA2.exe" as Win32 binary (0x400000-0x678000)
Whoopsie. That heuristic looks like it's broken.
--
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=31497
Bug #: 31497
Summary: Stack Trace: Unhandled Exception: page fault ...
Product: Wine
Version: 1.5.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Chris(a)InfoGreat.com
Classification: Unclassified
Created attachment 41407
--> http://bugs.winehq.org/attachment.cgi?id=41407
Stack Trace
Application reported several failures on installation, which I did not record,
but if these are important, then I'll be happy to re-install and capture these
complaints.
Fire up Quicken 2011 Deluxe, and every thing looks good until the "Register"
demand appears. The crash happens at dismiss of this dialog.
--
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=31075
Bug #: 31075
Summary: Built in Explorer moves file to trash instead of
permanently deleting file
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: computergeoffrey(a)zoho.com
Classification: Unclassified
Built in Explorer moves file to trash instead of permanently deleting file with
Shift+Delete. I expect it to be removed forever, without going to trash first.
--
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=22813
Summary: wine's loader does not check invalid image size
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://ghostscript.com/~hintak/wine-debug/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: htl10(a)users.sourceforge.net
+++ This bug was initially created as a clone of Bug #22812 +++
(#22812 against the compilation - this bug is about the loader not complaining)
part of ghostscript's building process runs:
mt -nologo -manifest psi/dwsetup_x86.manifest -outputresource:setupgs.exe;#1
mt -nologo -manifest psi/dwuninst_x86.manifest -outputresource:uninstgs.exe;#1
This step corrupts executables under wine and they gain a wrong image size;
both vista and win7 then complains they are not valid win32 applications. See
discussion on wine-devel mailing list.
But wine would happily load them, so wine is not checking for validity. Here
are two such broken executables:
http://ghostscript.com/~hintak/wine-debug/setupgs-wine.exehttp://ghostscript.com/~hintak/wine-debug/uninstgs-wine.exe
--
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=18389
Summary: Registering after installing Roblox doesn't work
Product: Wine
Version: 1.1.20
Platform: Other
URL: http://wiki.roblox4linux.co.cc
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
After doing 'winetricks pdh' to work around bug 18388,
it takes you to a web page; clicking Register and then Over 13
takes you to a nice page where you put in your desired userid
and password. Clicking "Sign Up!" does nothing. On the log one sees
fixme:mshtml:nsUploadChannel_SetUploadStream Unsupported aContentType argument:
"application/json; charset=utf-8"
fixme:mshtml:nsUploadChannel_SetUploadStream Unsupported aContentType argument:
"application/x-www-form-urlencoded; charset=utf-8"
'winetricks ie6' doesn't work around the problem - it shows a blank web page.
Workaround is to go to http://www.roblox.com/ in Firefox and register there;
then you can log in in the iexplore window roblox opened up.
--
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=10332
Summary: Irfanview crashes in thumbnail mode when previewing
certain text file
Product: Wine
Version: 0.9.48.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: malte(a)cornils.net
Created an attachment (id=8998)
--> (http://bugs.winehq.org/attachment.cgi?id=8998)
file in folder makes irfanview's thumbnail browser crash
Normal thumbnail browse mode is fine. However, when I enter a directory with a
certain file in it (attached as nautilus-debug-log.txt), IrfanView crashes.
Other files (images, text files) are fine. I have been unable to get a
backtrace; gdb won't let me since the application exits with 01 status, and
winedbg doesn't return to its shell after I typed "run" once. It's an X error,
so maybe wine catches the error condition and "gracefully" shuts down.
The X error output is also attached.
--
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=29265
Bug #: 29265
Summary: WebGallery: search throws access violation
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)stanev.org
Classification: Unclassified
To reproduce, download WebGallery and create one:
1) click on directory with some jpgs in it;
2) press Input folder button
3) write some metadata below
4) click on Gallery button. This will create subdir called WebGallery inside
with generated static webgallery
5) press Search button and choose dir from step 1
6) type something to search for and press search
7) crash
Did some investigation, the log shows this:
err:msxml:doparse Document labelled UTF-16 but has UTF-8 content
The problem is that this application sets wrong the encoding in xml to UTF-16.
The file is UTF-8 and if changed with editor the search went OK.
For such ill applications to work, the encoding have to be forced/fallbacked to
UTF-8 but libxml2 does not have such a functionality by design.
Under win7 the app works fine.
--
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=17856
Summary: JFlothows Wuerfel crashes with BAD_DRAWABLE "Cannot get
FB Config for iPixelFormat 0"
Product: Wine
Version: 1.1.17
Platform: PC
URL: http://download.jflothow.de/fvstein/WuerfelWIN.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
The program linked here should open up a window and display a unit cube to
demonstrate the effects of a transformation-matrix.
The application crashes right after opening the window. There is no OpenGL-cube
drawn. Here's a log: http://pastebin.com/f1c718e52
---
fixme:richedit:ME_HandleMessage WM_STYLECHANGING: stub
fixme:richedit:ME_HandleMessage WM_STYLECHANGED: stub
err:wgl:internal_SetPixelFormat Invalid iPixelFormat: 0
err:wgl:X11DRV_wglCreateContext Cannot get FB Config for iPixelFormat 0, expect
problems!
X Error of failed request: GLXBadDrawable
Major opcode of failed request: 128 (GLX)
Minor opcode of failed request: 11 (X_GLXSwapBuffers)
Serial number of failed request: 936
Current serial number in output stream: 936
Locking assertion failure. Backtrace: [...]
---
GFX card: Geforce 8800GTX, prop. driver version 177.82, one display.
--
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=32651
Bug #: 32651
Summary: File path passed to linux application by winebrowser
is mangled if it contains international characters
Product: Wine
Version: 1.5.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: DonJaime(a)freenet.de
Classification: Unclassified
When a windows program (ElsterFormular) running under wine tries to open a pdf
file called Übertragungsprotokoll_UStVA2012_IV._Quartal_My_Name.pdf using the
native pdf application (which works as per
http://wiki.winehq.org/FAQ#head-bc5b677c29daa2cd16b83bca8c88f31b2341cb98),
Linux produces the error:
Unable to run the command specified. The file or folder
file:///home/james/.wine/dosdevices/c:/users/james/Application
Data/elsterformular/pica/tmp/�bertragungsprotokoll_UStVA2012_IV._Quartal_My_Name.pdf
does not exist.
The same thing happens if I try to open it from the wine explorer. If I rename
the file to start with 'U' I can open it from the wine explorer.
My locale is en_US.UTF-8.
--
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=20414
Summary: Crash in Tales of Monkey Island
Product: Wine
Version: 1.1.31
Platform: Macintosh
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: per(a)morth.org
Created an attachment (id=24221)
--> (http://bugs.winehq.org/attachment.cgi?id=24221)
log info/traceback
Sometime between release of chapter 20 (27/8 iirc) and chapter 3 (29/9), wine
has started to crash when trying to play Tales of Monkey Island for me.
I've tried various clean .wine dirs / using native dlls, but nothing seems to
help. Crash log is 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=12639
Summary: ZENcast Organizer installer fails with error -5002
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.zencast.com/downloads/download.asp
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
When running the ZENcast Organizer installer, the installer proceeds to unpack
itself, but when the actual installation is run, a dialog box with error code
-5002 is shown. No relevant standard error messages were outputted.
--
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=22530
Summary: CDBurnerXP 4.0.x with Mono exits when entering data
disc mode
Product: Wine
Version: 1.1.43
Platform: x86-64
URL: http://cdburnerxp.se/downloads/releases/4.x/cdbxp_setu
p_4.0.022.370.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=27618)
--> (http://bugs.winehq.org/attachment.cgi?id=27618)
Terminal output
Starting the program and clicking "Create Data CD/DVD" results in the program
exiting when using Mono (installed via winetricks mono26). Mono prints
"Unhandled Exception: System.NotImplementedException: COM/ActiveX support is
not implemented"...
(It also exits when trying to enter audio CD mode, but that looks like a
different exception.)
--
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=31109
Bug #: 31109
Summary: Microshop 2.0 (.NET 2.0 app using System.Transactions)
wants ole32 CoGetDefaultContext
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
not really serious (yet), it seems the exception is swallowed somewhere and the
app continues to load.
Though the impact is unclear (no default COM context state?).
At least worth a bug to document the use of the API from .NET
System.Transactions namespace.
Prerequisites: 'winetricks -q dotnet20sp1 mdac28 jet40'
Exception info:
--- snip ---
Exception object: 0149c08c
Exception type: System.EntryPointNotFoundException
Message: Unable to find an entry point named 'CoGetDefaultContext' in DLL
'Ole32'.
InnerException: <none>
StackTrace (generated):
<none>
StackTraceString: <none>
HResult: 80131523
--- snip ---
CLR stack:
--- snip ---
OS Thread Id: 0x24 (0)
ESP EIP
0033edec 7b83953f [PrestubMethodFrame: 0033edec]
System.Transactions.NativeMethods.CoGetDefaultContext(Int32, System.Guid ByRef,
System.Transactions.SafeIUnknown ByRef)
0033ee00 67af2fce
System.Transactions.Transaction.JitSafeGetContextTransaction(System.Transactions.ContextData)
0033ee34 67af31ba
System.Transactions.Transaction.FastGetTransaction(System.Transactions.TransactionScope,
System.Transactions.ContextData, System.Transactions.Transaction ByRef)
0033ee48 67af32fd System.Transactions.Transaction.get_Current()
0033ee6c 65250312 System.Data.Common.ADP.IsSysTxEqualSysEsTransaction()
0033ee74 6525037d System.Data.Common.ADP.NeedManualEnlistment()
0033ee7c 652bd6cd System.Data.OleDb.OleDbConnection.Open()
0033ee88 073b417d NHibernate.JetDriver.JetDbConnection.Open()
0033ee8c 073b3ff9
NHibernate.Connection.DriverConnectionProvider.GetConnection()
0033eeb8 073b3f75
NHibernate.Tool.hbm2ddl.SuppliedConnectionProviderConnectionHelper.Prepare()
0033eec4 073b3e7a
NHibernate.Tool.hbm2ddl.SchemaMetadataUpdater.GetReservedWords(NHibernate.Dialect.Dialect,
NHibernate.Tool.hbm2ddl.IConnectionHelper)
0033eef8 073b3dd7
NHibernate.Tool.hbm2ddl.SchemaMetadataUpdater.Update(NHibernate.ISessionFactory)
0033ef0c 073b29b9
NHibernate.Impl.SessionFactoryImpl..ctor(NHibernate.Cfg.Configuration,
NHibernate.Engine.IMapping, NHibernate.Cfg.Settings,
NHibernate.Event.EventListeners)
0033f0b0 0734c83f NHibernate.Cfg.Configuration.BuildSessionFactory()
0033f0c0 02be9823 SABS.Common.Helpers.NHibernateHelper.a()
0033f100 02be9503 SABS.Common.Helpers.NHibernateHelper.GetSessionFactory()
0033f10c 02be4c18 an.a(System.String[])
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms684311%28v=vs.85%…
It's called with APTTYPE_CURRENT -> -1
Direct download: http://www.sabs.ro/fw_files/download/Microshop_2.0.3.107.exe
$ du -sh Microshop_2.0.3.107.exe
21M Microshop_2.0.3.107.exe
$ sha1sum Microshop_2.0.3.107.exe
5a773e093e718487139ab347d1bc8de8dadd9e03 Microshop_2.0.3.107.exe
$ wine --version
wine-1.5.7-309-gb4da889
Regards
--
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=24273
Summary: Some objects in Source games are black
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.monreal+wine(a)gmail.com
Some objects in games based on Valve's Source engine are displayed all black:
- Half-Life 2: the airboat, the (drivable) car
- Left 4 Dead: weapons, pickup items and player models
Running on a GeForce 7950. I tried various graphics settings but they all lead
to the same black textures in both games.
--
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=25775
Summary: World of Warcraft: crashes several seconds after
logging in to a character.
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: geekgymnast(a)gmail.com
Created an attachment (id=32847)
--> (http://bugs.winehq.org/attachment.cgi?id=32847)
log of console text for running world of warcraft
World of Warcraft successfully loads and allows me to log in. After selecting a
character on the character select screen, it successfully loads and enters the
game world for a few seconds before crashing. The sound continues to run even
after crashing.
--
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=22687
Summary: Bonzai3D crashes and wine freezes when project window
is moved
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://formz.com/products/bonzai3d/bonzai3dDownloadTri
al.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nick(a)lasventajas.com
Bonzai3D is a 3D drawing application.
Running Bonzai opens several application windows including menu palettes and
the main project window, which contains the 3D view of our drawing. If you left
click and grab the project window bar to move it then Bonzai encounters a
serious error and crashes. On my installation the OS also becomes unresponsive
to keyboard and mouse and I have to Alt F2, wineserver -k to get back my
desktop.
None of the other Bonzai windows produce this crash and all windows, including
the project window, can be resized.
--
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=26101
Summary: riched20/editor tests show a ton of valgrind warnings
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: minor
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=33289)
--> (http://bugs.winehq.org/attachment.cgi?id=33289)
valgrind log
Most seem related to:
12 bytes in 1 blocks are definitely lost
at notify_alloc (heap.c:254)
by RtlAllocateHeap (heap.c:1701)
by heap_alloc (editor.h:30)
by ME_MakeStringB (string.c:35)
by ME_MakeStringN (string.c:46)
by ME_InsertTextFromCursor (caret.c:576)
by ME_HandleMessage (editor.c:3557)
by RichEditWndProc_common (editor.c:4491)
by RichEditWndProcA (editor.c:4516)
by ??? (winproc.c:172)
by call_window_proc (winproc.c:242)
by WINPROC_call_window (winproc.c:908)
by call_window_proc (message.c:2201)
by send_message (message.c:3042)
by SendMessageA (message.c:3187)
by test_scrollbar_visibility (editor.c:2752)
by func_editor (editor.c:7112)
by run_test (test.h:556)
by main (test.h:624)
there's also:
12 bytes in 1 blocks are definitely lost
at notify_alloc (heap.c:254)
by RtlAllocateHeap (heap.c:1701)
by heap_alloc (editor.h:30)
by ME_MakeStringB (string.c:35)
by ME_MakeStringN (string.c:46)
by ME_InsertTextFromCursor (caret.c:576)
by RTFFlushUnicodeOutputBuffer (reader.c:2558)
by RTFFlushOutputBuffer (reader.c:2603)
by ME_RTFParAttrHook (editor.c:826)
by ControlClass (reader.c:2364)
by RTFRouteToken (reader.c:342)
by RTFRead (reader.c:310)
by ME_StreamIn (editor.c:1488)
by ME_Paste (editor.c:1998)
by ME_KeyDown (editor.c:2305)
by ME_HandleMessage (editor.c:4020)
by RichEditWndProc_common (editor.c:4491)
by RichEditWndProcA (editor.c:4516)
by ??? (winproc.c:172)
by call_window_proc (winproc.c:242)
...
12 bytes in 1 blocks are definitely lost
at notify_alloc (heap.c:254)
by RtlAllocateHeap (heap.c:1701)
by HeapAlloc (heap.c:267)
by GlobalAlloc (heap.c:386)
by set_dataobject_format (clipboard.c:2071)
by OleSetClipboard (clipboard.c:2134)
by ME_Copy (editor.c:2022)
by ME_KeyDown (editor.c:2317)
by ME_HandleMessage (editor.c:4020)
by RichEditWndProc_common (editor.c:4491)
by RichEditWndProcA (editor.c:4516)
by ??? (winproc.c:172)
by call_window_proc (winproc.c:242)
by WINPROC_call_window (winproc.c:908)
by call_window_proc (message.c:2201)
by send_message (message.c:3042)
by SendMessageA (message.c:3187)
by test_WM_PASTE (editor.c:4805)
by func_editor (editor.c:7131)
by run_test (test.h:556)
and more. I'll attach the full log.
--
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=13934
Summary: thief deadly shadows crashes immediately
Product: Wine
Version: 1.0-rc4
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jlayton(a)poochiereds.net
Created an attachment (id=14073)
--> (http://bugs.winehq.org/attachment.cgi?id=14073)
log from crash
Thief: Deadly Shadows consistently crashes immediately for me when starting it.
Log from startup attached with WINEDEBUG set to +relay.
This is using a cracked copy of t3.exe, but I get similar results when I use
the copy-protected binary as well with the CD in the drive.
Happy to get any logs you wish from running it if they'll be helpful...
--
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=28823
Bug #: 28823
Summary: riched20/tests/editor.ok: TRACE() of uninitialized
value triggered by test_word_movement()?
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Valgrind complains:
Conditional jump or move depends on uninitialised value(s)
at _itoa_word (_itoa.c:196)
by vfprintf (vfprintf.c:1619)
by vsprintf (iovsprintf.c:43)
by sprintf (sprintf.c:34)
by default_dbgstr_wn (debug.c:374)
by NTDLL_dbgstr_wn (debugtools.c:107)
by wine_dbgstr_wn (debug.c:421)
by debugstr_wn (debug.h:257)
by ME_WordBreakProc (string.c:183)
by ME_CallWordBreakProc (string.c:214)
by ME_MoveCursorWords (caret.c:741)
by ME_ArrowKey (caret.c:1579)
by ME_KeyDown (editor.c:2110)
by ME_HandleMessage (editor.c:4028)
by RichEditWndProc_common (editor.c:4499)
by RichEditWndProcA (editor.c:4524)
by ??? (winproc.c:172)
by call_window_proc (winproc.c:242)
by WINPROC_call_window (winproc.c:908)
by call_window_proc (message.c:2211)
by send_message (message.c:3084)
by SendMessageA (message.c:3286)
by send_ctrl_key (editor.c:4665)
by test_word_movement (editor.c:5952)
Uninitialised value was created by a client request
at mark_block_uninitialized (heap.c:208)
by initialize_block (heap.c:239)
by RtlAllocateHeap (heap.c:1703)
by heap_alloc (editor.h:30)
by ME_MakeStringB (string.c:39)
by ME_MakeStringN (string.c:46)
by ME_InsertRunAtCursor (run.c:372)
by ME_InternalInsertTextFromCursor (caret.c:467)
by ME_InsertTextFromCursor (caret.c:541)
by ME_HandleMessage (editor.c:3565)
by RichEditWndProc_common (editor.c:4499)
by RichEditWndProcA (editor.c:4524)
by ??? (winproc.c:172)
by call_window_proc (winproc.c:242)
by WINPROC_call_window (winproc.c:908)
by call_window_proc (message.c:2211)
by send_message (message.c:3084)
by SendMessageA (message.c:3286)
by test_word_movement (editor.c:5947)
--
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=31462
Bug #: 31462
Summary: Open General: corrupted tiles on the map
Product: Wine
Version: 1.5.10
Platform: x86
URL: http://sourceforge.net/projects/opengeneral/files/Dail
yBuild/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 41359
--> http://bugs.winehq.org/attachment.cgi?id=41359
terminal output
The game starts fine except that intro video and music don't play. When I load
a scenario or campaign map, the map is loaded, but the hexagonal tiles on the
map are corrupted (see attached screenshot). If you select a unit, all the
surrounding tiles become corrupted.
Another occurrence of the problem is when I load a campaign where the weather
is snowy: the map is all red and I can only see small white dots moving across
the screen (representing the snowflakes).
I can reproduce the problem with Wine 1.2.3, 1.4.1, 1.5.10. Tried the game with
the open source Nouveau as well as with the proprietary Nvidia driver (304.32):
both display tiles incorrectly.
Steps to reproduce the problem:
1. download and install the game
2. start the game and select <Play Scenario> in the menu (second button from
the left). Choose a map (it can take some time until the map is downloaded)
3. when the map is loaded you should see that tiles (hexes) are drawn
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=26097
Summary: Mario Forever 5.0.1: fails to start
Product: Wine
Version: 1.3.13
Platform: x86
URL: http://www.gamershell.com/download_69382.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Gives two error dialogs on startup:
Error
Cannot use control \\\"ControlName\\\" registered at
{8856F961-340A-11D0-A96B-00C04FD705A2} in this computer registry :
Unable to find any programming interface.
Terminal shows:
fixme:shdocvw:PersistStreamInit_InitNew (0x49e968)
fixme:shdocvw:ProvideClassInfo_GetClassInfo (0x49e968)->(0x33fbd4)
fixme:shdocvw:OleInPlaceObject_InPlaceDeactivate (0x49e968)
fixme:shdocvw:OleObject_Close (0x49e968)->(1)
fixme:shdocvw:PersistStreamInit_InitNew (0x4a0600)
fixme:shdocvw:ProvideClassInfo_GetClassInfo (0x4a0600)->(0x33fc10)
fixme:shdocvw:OleInPlaceObject_InPlaceDeactivate (0x4a0600)
fixme:shdocvw:OleObject_Close (0x4a0600)->(1)
so I tried 'winetricks -q ie7', which gives me the game splash screen.
Game is a free download.
--
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=12926
Summary: Installation of Microsoft Zune Software fails
Product: Wine
Version: unspecified
Platform: All
URL: http://www.zune.net/en-
us/products/zunesoftware/download.htm
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: admin(a)brokencrystal.com
Download the software free here:
http://www.zune.net/en-us/products/zunesoftware/download.htm
The software crashes during install.
--
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=33974
Bug #: 33974
Summary: The Last Remnant crashes frequently
Product: Wine
Version: 1.6-rc4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.blumenkrantz(a)gmail.com
Classification: Unclassified
When playing TLR, the game is guaranteed to crash at certain points; one such
example is when entering the Sacred Lands in the game.
Additionally, the game crashes repeatedly during fights when displaying certain
enemy attacks from certain angles; these crashes do not leave any useful info
that I have been able to find, though I am willing to provide any logs on
demand.
--
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=17261
Summary: CheckPoint SmartConsole R65 (FirewallManagement tool)
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: andre.kjellstrup(a)gmail.com
SmartConsole, consists of SmartDashboard, SmartView Tracker SmartMonitor (+some
minor tools)
Most of it works well, but some functionality is reduced.
-This tool has a internal demo-database, that can easily be used for testing.
-I will provide the software to you on request.
SmartView Tracker; should be able to filter on any column (right-click on top
of column) But only on the leftmost column works as expected.
In order to filter the correct column I have to hide the other columns making
the filter column the left one.
SmartDashboard; when adding a network og node object, you see a list,
(scroll-list) it should be possible to type inside the list in order to make it
scroll to the wanted object, but instead, when typing, many objects are
selected, (as if shift were held down)
Fixing those two problems would make this application much more usable.
-please feel free to contact me if you need any software/information about this
application.
--
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=19258
Summary: BBC iPlayer Desktop fails to download Adobe AIR
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://www.bbc.co.uk/iplayer/install/
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=22299)
--> (http://bugs.winehq.org/attachment.cgi?id=22299)
Wine 1.1.25 +cryptasn +wintrust
The BBC iPlayer tries to download Adobe AIR through Flash.
http://www.bbc.co.uk/iplayer/install/
Flash appears to successfully download the file, but reports it unsuccessful.
Installing AIR beforehand makes no difference.
http://airdownload.adobe.com/air/win/download/1.5/AdobeAIRInstaller.exe
A similar problem was related to wintrust, but I can not say that this is the
problem.
Tried a +cryptasn,+wintrust trace, only +cryptasn gives any output (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=32761
Bug #: 32761
Summary: SafeDisc v4 fails to properly install on a 64-bit
system
Product: Wine
Version: 1.5.22
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: muzerakascooby(a)gmail.com
Classification: Unclassified
Installing Worms Forts Under Siege, it installs a SecDrv.sys into
system32/drivers or syswow64/drivers. However, in the registry key
(HKLM/System/CurrentControlSet/Services/SecDrv), it installs a value with data
that always has the system32 path, thus meaning that the driver fails to load
on wine startup and copy-protected games will just flat out refuse to run. I
would have thought wine would have been coded to catch this sort of thing...
evidently something was missed. Fixing this I would imagine would greatly
reduce the frequency of SafeDisc-related problems on 64-bit systems, unless
it's just peculiar to this one game.
--
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=23328
Summary: Medal of Honor MOHAA and MOHPA: messed autorun
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felipemoraesbr(a)gmail.com
I´m using ubuntu lucid lynx with NVIDIA 9500 GT video card.
What happens is which the autorun image is show smaller than it is, it gains
some scroll bars, and also, none of the buttons work.
I will try to post some kind of log later
--
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=18943
Summary: Winedbg prints "illegal address" a lot during
backtraces of chromium unit test crashes
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: eric.pouech(a)orange.fr
In bug 15206, I mentioned that windbg output "illegal address" often during
backtraces of chromium unit tests when getting symbols from .pdb's, e.g.
Backtrace:
=>0 0x02e49c03 DebugUtil::BreakDebugger+0x3()
[c:\users\dank\documents\chromium\src\base\debug_util_win.cc:103] in chrome
(0x0148e17c)
1 0x01d280e8 SilentRuntimeAssertHandler+0x8(str=*** Invalid address
0x0148e18c ***
) [c:\users\dank\documents\chromium\src\chrome\common\logging_chrome.cc:41] in
chrome (0x0148e184)
2 0x02e1f1e6 logging::LogMessage::~LogMessage+0x2f6()
[c:\users\dank\documents\chromium\src\base\logging.cc:538] in chrome
(0x0148e2f0)
3 0x025135fa ExtensionMessageService::RendererShutdown+0xea(renderer=***
Invalid address 0x0148e410 ***
This seems wrong, and is fairly annoying.
--
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=24042
Summary: Heat Online won't start if using mono26 instead of
dotnet20
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://head-online.net
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
[Probably a mono problem, but needs to be triaged by somebody who knows both
mono and wine before reporting to them?]
Do 'winetricks mono', then install and start the app.
(You can bypass the patcher after the first run by running Heat.bin instead of
Heat.exe.)
Press 'Start'. It crashes quickly; the log shows
...
** Message: Unknown heap type: {smartassembly}
** (heat.bin:8): WARNING **: The following assembly referenced from C:\Program
Files\HeatOnline\heat.bin could not be loaded:
Assembly: CRC_ReleaseNoDebug (assemblyref_index=0)
Version: 0.0.0.0
Public Key: (none)
The assembly was not found in the Global Assembly Cache, a path listed in the
MONO_PATH environment variable, or in the location of the executing assembly
(C:\Program Files\HeatOnline\).
** (heat.bin:8): WARNING **: Could not load file or assembly
'CRC_ReleaseNoDebug, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or
one of its dependencies.
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or
assembly 'CRC_ReleaseNoDebug, Version=0.0.0.0, Culture=neutral,
PublicKeyToken=null' or one of its dependencies.
File name: 'CRC_ReleaseNoDebug, Version=0.0.0.0, Culture=neutral,
PublicKeyToken=null'
--
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=30216
Bug #: 30216
Summary: Audition Online VN: crashes when start game after the
patcher
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kids_lt(a)hotmail.com
Classification: Unclassified
Created attachment 39452
--> http://bugs.winehq.org/attachment.cgi?id=39452
program error detail
wine crashes when I click start game after patcher
--
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=23333
Summary: "Microsoft Math does not work.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leo_metal_20(a)hotmail.com
The scientific calculator "Microsoft Math does not work. Please a solution to
this.
--
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=16862
Summary: Sony Image Data Lightbox SR crashes and makes the whole
user session freeze
Product: Wine
Version: 1.1.10
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: julien(a)kirya.net
Created an attachment (id=18607)
--> (http://bugs.winehq.org/attachment.cgi?id=18607)
Image Data Lightbox SR crash backtrace
Hi,
When selecting a submenu in the Image Data Lightbox SR UI (eg. right click,
select one menu which has subentries), the application crashes (see attached
backtrace) and makes the whole user session freeze.
The process is stated as "defunct" (using ps) and can still be killed.
Cheers,
Julien
--
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=23590
Summary: Wine cannot start an application from a iso mounted
using gvfs (gnome archive mounter)
Product: Wine
Version: 1.2-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: el.il(a)doom.co.il
Created an attachment (id=29486)
--> (http://bugs.winehq.org/attachment.cgi?id=29486)
backtrace of the crash
If you try to install a game from a iso file, you need to mount the iso. the
easy way is to use archive mounter, which also doesn't need root permissions.
for example, i tested it with BLUR (racing game) installation:
mount using archive mounter - run wine setup.exe - the application crash
instantly (attached backtrace)
but if you mount using mount isofile -o loop /mnt, run wine setup.exe - the
installer starts without any problem!
BLUR isn't the only app effected. try any app and see for yourself.
it is possible that this is a bug in gvfs and not in wine.
--
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=30457
Bug #: 30457
Summary: Gimp,miro and other gtk+ base application crash on
startup
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Download Gimp installer from
http://downloads.sourceforge.net/project/gimp-win/GIMP%20%2B%20GTK%2B%20%28…
2. install gimp
3. start gimp
Actual result:
Crash
I remember it didn't crash in the pass, according to
http://bugs.winehq.org/show_bug.cgi?id=27285#c1
It didn't crash with wine-1.4-rc1
However, after tried several older version of Wine, I find gimp/miro and some
other gtk+ based applications crash all the time, even with wine-1.4-rc1
Could somebody double check?
I tried to cross-compile gtk+ win32 to get a full debugging symbols but failed
with some link errors.
--
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=19340
Summary: Crash when starting monkey island
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bart(a)sbo-dewindroos.nl
Created an attachment (id=22397)
--> (http://bugs.winehq.org/attachment.cgi?id=22397)
Console log
After starting up monkey island: the secret of monkey island, special edition
the game crashes with an unhandled exception
--
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=9444
Summary: Crystal Enterprise 8 (a flavor of Crystal Reports?)
install fails
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.crystaldecisions.net
OS/Version: other
Status: NEW
Keywords: Installer
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Created an attachment (id=7776)
--> (http://bugs.winehq.org/attachment.cgi?id=7776)
+file,+msi,+setupapi,+seh log of setup.exe
crystalenterprise 8 doesn't install on Wine; the installer
aborts after a minute. The first indication of failure
in a +msi,+setupapi log is the following line:
err:msi:ITERATE_Actions Execution halted, action L"InstallExecute" returned 2
My untrained eye can't see the cause of the error.
--
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=9638
Summary: fileant won't start
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://fileant.com
OS/Version: other
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In
http://groups.google.com/group/bsdg/msg/0dddf606e5dab3a7
a user mentioned that he wanted the app FileAnt to work,
so I gave it a shot with wine-0.9.44-gcdc8d97.
It seems to be a VB6 app, so I did
winetricks vcrun6 vbrun60
before installing. This helped the installer complete
without warnings about missing vb runtime.
However, on startup, the app complains
FileAnt needs a Microsoft file. FileAnt will now open the url for this file.
+relay revealed the missing object was WSH:
0009:Call ole32.CLSIDFromProgID(00419b14
L"Scripting.FileSystemObject",0034f888) ret=660d965e
winetricks wsh51 got past that, but then the app crashed in the
app's window proc.
--
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=9664
Summary: Missing icon during MS Office 2000 installation
Product: Wine
Version: 0.9.45.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Ronny.Standtke(a)gmx.net
Created an attachment (id=8078)
--> (http://bugs.winehq.org/attachment.cgi?id=8078)
Screenshot showing the missing icon
When installing MS Office 2000 with wine 0.9.45 there is a missing icon. I will
attach a screenshot.
--
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=9895
Summary: Alzip crashes: Invalid float operation
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.altools.net/portals/0/ALZip.exe
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, a user submitted garbage test results for this app into AppDB, and was
wondering how to get it working.
The installer crashes with a messageBox: Invalid float operation.
With native shdocvw (and shlwapi) the bug is gone (looks like shdocw still
needs a lot of work :( ).
--
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=31761
Bug #: 31761
Summary: ConvertXtoDVD 4: drop-down list won't open in virtual
desktop mode
Product: Wine
Version: 1.5.13
Platform: x86
URL: http://www.vso-software.fr/products/convert_x_to_dvd/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 41783
--> http://bugs.winehq.org/attachment.cgi?id=41783
terminal output
The problem occurs when the application is running in virtual desktop mode (in
full screen mode the problem doesn't happen).
Tested with several Wine versions from 1.2.3 to 1.5.12.
Native comctl32 doesn't help.
Steps to reproduce the problem (let's say with Wine 1.5.12):
1. create a new wineprefix and set up a virtual desktop
2. install the application, then launch it with ConvertXtoDvd.exe.
3. dismiss the trial reminder window and open the Settings-> DVD Specification
menu.
4. you should see 3 combo boxes here (Format, DVD Resolution, Aspect Ratio).
Open the first drop-down list (Format) by clicking on the 'down' arrow...the
list is opened fine.
5. open the second combo box (DVD Resolution)...it also opened correctly.
6. try to open the firstly selected drop-down list again (Format)...it doesn't
open any more
7. try to open the second combo box again: it doesn't open either
Once you opened a drop-down list, it won't open again (until you restart the
application).
In Wine 1.5.13 this behaviour changed somewhat: those drop-down lists don't
open at all (not even on the first attempt). The change is after
http://source.winehq.org/git/wine.git/commitdiff/ea07c310ecfee6b301e7af8413…
Fedora 17
X.Org X Server 1.12.3
Gnome 3.4.2
--
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=29876
Bug #: 29876
Summary: EA Origin: installations don't finish (manual exec of
EAProxyInstaller.exe required)
Product: Wine
Version: 1.4-rc3
Platform: x86-64
URL: http://www.dm.origin.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: debian(a)carbon-project.org
Classification: Unclassified
Installing games with EA Origin almost works, at the very end though, the
installation is stuck (no windows except the main Origin window are shown). The
problem seems to be, that EAProxyInstaller.exe doesn't finish. If you get the
full command with ps, kill Origin (you can't exit normally, as Origin will
complain, that there is an installation running and you should wait, but you
can wait as long as you like, nothing is going to happen), run the
EAProxyInstaller.exe command manually and finally start Origin again, the game
is marked as installed and is playable (tested with DA:O UE; #27558 and #20716
still apply).
The log itself is really not very helpful, I'm afraid, as the stuff that is
logged, is really spamming the console the moment you invoke Origin. The shown
fixme says, that CLSCTX_REMOTE_SERVER is not supported.
Apart from that, the command I had to execute manually and that was shown with
ps, while the installation was stuck past the last installer screen, was:
>C:\Program Files\Origin\EAProxyInstaller.exe /proxyFullPath=C:\users\Public\AppData\Origin\<PRIVACY>\setup.exe /proxyCmdLineArgs= /proxyCurrentDir=C:\users\Public\AppData\Origin\<PRIVACY> /proxyShowUI=1 /proxyRegPath=C:\users\Public\AppData\Origin\DownloadCache\staging.reg /proxyWait=1
--
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=34440
Bug #: 34440
Summary: NHL 2007 demo fails to install
Product: Wine
Version: 1.7.1
Platform: x86
URL: http://www.fileplanet.com/170491/170000/fileinfo/NHL-0
7-Demo
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
The demo fails to install, saying Directx9 is not available. Terminal output is
short:
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x33a4a8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33a298,0x00000000), stub!
fixme:ddraw:ddraw7_Initialize Ignoring guid
{aeb2cdd4-6e41-43ea-941c-8361cc760781}.
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{33d9a760-90c8-11d0-bd43-00a0c911ce86} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{33d9a761-90c8-11d0-bd43-00a0c911ce86} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb41-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{cc7bfb46-f175-11d1-a392-00e0291f3959} not found
tried devenum and directx from winetricks, neither helped.
(noticed while checking bug 10928)
austin@aw25 ~ $ sha1sum nhl07demo.zip
f25d735dbb6665f76e2e435baa523e02fab124f8 nhl07demo.zip
austin@aw25 ~ $ du -h nhl07demo.zip
1.9G nhl07demo.zip
austin@aw25 ~ $ wine --version
wine-1.7.1-57-g376af32
--
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=34568
Bug #: 34568
Summary: Sid Meier's Civilization V crashes
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kuc4iman(a)gmail.com
Classification: Unclassified
Created attachment 46019
--> http://bugs.winehq.org/attachment.cgi?id=46019
Backtrace.txt
I have a fedora 19 with all updates and Nvidia's proprietary blob. Civilization
bought in Steam. On the wine 1.6 it worked perfectly. But after upgrading to
1.7 began to fall after the selection box direktiks.
--
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=33911
Bug #: 33911
Summary: Stalker Clear Sky works only after installing d3dx9
using winetricks
Product: Wine
Version: 1.6-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otaku(a)rambler.ru
CC: wine-bugs(a)winehq.org
Classification: Unclassified
Created attachment 45035
--> http://bugs.winehq.org/attachment.cgi?id=45035
Terminal output when the game crashes
Stalker CS works only if d3dx9 is installed using winetricks, even if all .dll
overrides are removed from winecfg, else it shows crash message and exits.
Stalker CP is not affected with the bug.
--
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=25895
Summary: Civilization V Demo: doesn't play movies on startup
Product: Wine
Version: 1.3.12
Platform: x86
URL: http://www.bigdownload.com/games/civilization-v/pc/civ
ilization-5-demo/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=33001)
--> (http://bugs.winehq.org/attachment.cgi?id=33001)
terminal output
The demo doesn't seem to be affected by bug 24669, so I tried it. It still
requires Steam (grrr), but runs okay. On Windows, I get a few intro videos,
first the 'E for Everyone rating', 2k games, Firaxis Games, Gamespy, then two
tribesmen talking in a tent around a fire, some vikings on a ship, Egyptian
slaves building a pyramid, etc.
On wine, you just get a black screen until you hit escape or wait until the
menu appears.
To reproduce:
install the game
login to steam
run the game, choose DirectX9 mode.
watch :-)
Native quartz/devenum/wmp{9,10} did not help.
Terminal output attached.
wine-1.3.12-100-g09e2948
--
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=24399
Summary: CorelDRAW X3 Installer doesn't install language files
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jbopen(a)gmail.com
CorelDRAW X3 Installer does not call the language files installation package
(EN.msi, for example). Inside the installation CD, there is a folder called
"CGS13" with all this installation files, including the language files. You
need to install this package (EN.msi, for example) to get the "Languages"
folder inside "C:\Program Files\Corel\CorelDRAW Graphics Suite 13\".
--
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=34355
Bug #: 34355
Summary: Wine-Mono-Installation stops during League of Legends
installation
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ezilg(a)web.de
Classification: Unclassified
Created attachment 45737
--> http://bugs.winehq.org/attachment.cgi?id=45737
Backtrace of Wine-Mono-Installation
While installing 'Leagues of Legends' via PlayONLinux-wine-1.7,
I get the final stopper. (Please see attached backtrace)
The first message which I got stated :
- Wine could not find the Mono-paket.
It is necessary for .NET-programs in order for them to work correctly.
Wine can download and install the paket for you.
> I then pressed "install"
Dowmload started and was interupted 5 seconds later with a message-window :
- The program control.exe showed serious problems and had to be discontinued
> the backtrace details can be seen in the attachment.
Please help - I am not quite a LINUX-guru
I am using: Ubuntu 12.04 ( 32-bit )
--
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=28123
Summary: Mu Argentina. Muguard crashes when it start
Product: Wine
Version: 1.3.26
Platform: x86
URL: http://www.fileserve.com/file/pZXsQKS
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: warday27(a)hotmail.com
The system crashes when it tray tu open the main.exe file.
It seems that Muguard requires full access to hardware wich is impossible, due
security policies by linux kernel (what is very similar to Gameguard).
Unfortunately I have not be able tu proof it.
--
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=19820
Summary: window misplacement in Magic: The Gathering Online III
kicker
Product: Wine
Version: 1.1.28
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ricardo_barbano(a)hotmail.com
Created an attachment (id=23220)
--> (http://bugs.winehq.org/attachment.cgi?id=23220)
kicker.exe in windows
there is a misplacement of some windows in the Kicker.exe of MTGO III. by the
log i think it is a user32 issue but i'm not good in this area to know where to
try fixing.
the screenshots of how it is and how it should be are in attachment and the
+relay and +win logs too.
--
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=18877
Summary: Ultimate Spider-Man installer does not display images
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shacklein(a)gmail.com
The Ultimate Spider-Man installer does not display images in the background
while it is installing.
Images are displayed when using native msi2 when win98 is set in winecfg.
--
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=33358
Bug #: 33358
Summary: crashes every time
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: seamusdalton85(a)gmail.com
Classification: Unclassified
Created attachment 44131
--> http://bugs.winehq.org/attachment.cgi?id=44131
crash report
this happens every time I try to play empire total war.
--
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=27160
Summary: Winetricks: IE7 stack overflow
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq-bugs(a)dotancohen.com
Created an attachment (id=34699)
--> (http://bugs.winehq.org/attachment.cgi?id=34699)
Console output of stack overflow
Kubuntu 11.04:
✈demios:~$ uname -a
Linux demios 2.6.38-8-generic-pae #42-Ubuntu SMP Mon Apr 11 05:17:09 UTC 2011
i686 athlon i386 GNU/Linux
✈demios:~$ wine --version
wine-1.2.2
✈demios:~$ winetricks --version
20110402
Steps to reproduce:
1) rm -R .wine/
2) winetricks ie7
3) wine 'C:\Program Files\Internet Explorer\iexplore'
4) Browse to 127.0.0.1 with no server running on port 80
--
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=22135
Summary: Civilization 4 blocks the screen
Product: Wine
Version: 1.1.41
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luis.busquets(a)ilidium.com
When running this game under Windows, you can press ALT+TAB and then you change
to the desktop to run other things and you can afterwards go back. When you try
on Linux when you press those keys the menu for the appsthat you have open
appears in the middle of the screen and you can go with ALT+TAB to another.
However when you realease ALT+TAB nothing happens and you remain in the Civ4
game.
--
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=33314
Bug #: 33314
Summary: Civilization V crashes while loading some a game
Product: Wine
Version: 1.5.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: www.salmon.yann@free.fr
Classification: Unclassified
Created attachment 44062
--> http://bugs.winehq.org/attachment.cgi?id=44062
Execution trace
Hi, I have been playing Civilization V with the Gods&Kings expansion for some
weeks now, and loading my current game causes a crash.
Fore some time, I had been experiencing crashes when hitting Next turn on
several occasions in this same game. I would then transfer the last save to a
Windows system, progress to the next turn there, save again and continue under
my main (Wine) system.
But now, this trick does not work either.
Steam and Civ5 are installed in a clean prefix. I installed vcrun2008 and
directx9 with winetricks. I was able to complete another game before this one,
and I am able to start new games.
This does not seems to be related to the graphical engine. I suspect that the
program does something not entirely nice under certain circumstances, and that
the Wine implementations are less resilient or error-tolerant.
--
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=27533
Summary: wine debug log not found when an app crash
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dyvazar(a)numericable.fr
i'm trying to run a private app with wine 1.3.22 on ubuntu natty i386.
While it begins to load, a new dialog box is opened named "wine debug" and a
popup warn: sorry wine have met a fatal error (or so). Then closing this popup,
all the usefull debug comments light up inside the debug dialog box.
The problems are:
- only the latest debug lines can be seen as it cant be scrolled back
- and worst, this seems completly lost as i cant find these info logged.
Seems to be a wine bug: it should automatically drive its logs by 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=19304
Summary: Australian eTax 2009 will not pass roll-over function
step
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: which_dan(a)yahoo.com.au
Wine 1.1.25 is able to start the 2009 version (sp. 2009.1.0.623 22 June 2009
release) of the Australian Tax Office eTax software, but will not respond to
clicks on either the "Yes" or "No" buttons on the roll-over function page.
I cannot add any more information than this at this stage, but if given
instructions will respond to questions.
--
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=16092
Summary: StickyDrive app crashes on startup
Product: Wine
Version: 1.1.8
Platform: Other
URL: http://mmiline.com/
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
(From mmiline.com's main page, click on StickyDrive and then "Learn More",
then under Red Sox demo, click "Download Now". This points to
http://www2.stickyinc.com/download/getDownload.php?idTag=BOSTN-1668&action=…
which downloads the installer in question,
InstallStickyDrive-BOSTN-1668.exe.)
Insert a blank USB key, run the installer, and get past bug 16091
by clicking "Show all drives"; then pick the USB drive and let
the installer install the demo on the USB key.
Then try running "Launch stickydrive.exe". It first complains
err:module:import_dll Library MSVBVM60.DLL ... not found
so do "winetricks vbrun60". It then complains
err:ole:CoGetClassObject no class object {00000507-0000-0010-8000-00aa006d2ea4}
could be created for context 0x5
wine: Unhandled exception 0x0eedfade at address 0x0000:0x7ee349d0 (thread
0023), starting debugger...
To get past that, do "winetricks mdac27".
It then complains
err:ole:CoGetClassObject no class object {6c736db1-bd94-11d0-8a23-00aa00b58e10}
could be created for context 0x1
but that's probably innocuous (it's a visual studio debugging dll, and
is probably optional) and crashes with
First chance exception: page fault on read access to 0x02b67318 in 32-bit code
(0x003bfc5a).
and a dialog box.
This app, Stickydrive, is used on some schwag usb keys,
e.g. it's used on a USB key we got in our copy of Daily Variety (!)
advertising Burn Notice. Happily, users who know what they're
doing can usually navigate down into __stickydrive/content and
find the real content there. But the stickydrive app really
ought to work, even though it's, um, not the kind of app I'd write myself.
--
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.