http://bugs.winehq.org/show_bug.cgi?id=30791
Bug #: 30791
Summary: Star Wars Empire at War Gold partially installs and is
unplayable
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dwayneslandry(a)gmail.com
Classification: Unclassified
This disc has 2 separate installers. The launcher and the first installer work
fine. However the installer fails to jump over to the second installer and wine
crashes. I tried to run the first program Empires at War and the launcher pops
up, nothing else happens. Also I am able to manually launch the second
installer which is for the expansion pack. The installer launches then crashes
almost immediately,
--
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=23914
Summary: Resident Evil 5: Game fails to run with unknown reason
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
I've try to run the game, but it doesn't work.
It shows me an messagebox with an error.
InitRpl Failed.
ErrorCode: 80070507
As I see, the same error can be even for some Windows users, but no one know
why.
I attach a debug output with +relay.
I tried to analyze it, but with no results. Maybe there error with
cryptographic(rsaenh), i don't know.
Please don't close this but, even it is not a wine bug. Just rename it. There
maybe will be other errors with this game.
Thanks.
--
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=36610
Bug ID: 36610
Summary: Can't choose Windows version in winecfg
Product: Wine
Version: 1.7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zyx1984(a)gmail.com
I have Fedora20 with wine-1.7.18 installed from updates repository.
When I run winecfg I can only choose Windows version between Windows XP and
Windows 8. There is no Windows 95 or Windows 98 strings in combobox.
--
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=36618
Bug ID: 36618
Summary: when I click on the application gives me error
Product: Wine
Version: 1.1.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: juanmajote(a)gmail.com
que no se me abre la aplicacion cuando le ago clik
--
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=11812
Summary: HattrickPoli. Lists lags and Notebook focus errors.
Product: Wine
Version: 0.9.55.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jacobidiego(a)gmail.com
Created an attachment (id=11074)
--> (http://bugs.winehq.org/attachment.cgi?id=11074)
hattrick data of my account
HattrickPoli is a game tool that i have recently submitted on appDB It works
perfectly and it could be a Platinum but it has some unharmful errors:
This is a program with an interface based intensively on lists and notebook.
- Lists has lags when clicking on it.
- When clicking on notebooks tabs it shows the notebook page but doesnt focus
the notebook tab.
Both are unharmful errors but maybe are related to others.
This tool can be downloaded for free from www.hattrickpoli.com but if you dont
have an account on hattrick.org you will have no data on it, so i am attaching
the .dat file for you to have some data on it. Just unzip it on the
hattrickpoli dir.
This is wine 0.9.55 on ubuntu 7.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=18311
Summary: Applications menu entries are case sensitive
Product: Wine
Version: 1.0.1
Platform: Other
OS/Version: other
Status: NEW
Keywords: integration
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scott(a)open-vote.org
>From launchpad: https://bugs.launchpad.net/ubuntu/+source/wine/+bug/242529
The GNOME integration for Wine's "Start menu" listings
(Applications-->Wine-->Programs) is case sensitive, when in fact it shouldn't
be.
For example, following the installation of an 'addon' package to another
application that I had already installed, I now have both
'Trnsys 16'
and 'TRNSYS 16'
listed in my Applications-->Wine-->Programs menu, when I am fairly sure that
only one of these should be present.
--
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=9849
Summary: in win16 apps, exit status is lost, and always reported
as 0
Product: Wine
Version: 0.9.45.
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: wine-dos
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Simple win16 programs that just terminate with nonzero
status do so properly on winxp, but on wine, wine terminates
with zero status.
This is easy to test with openwatcom and a trivial C program, e.g.
#include <stdlib.h>
#include <unistd.h>
extern void myexit( void );
#pragma aux myexit = \
"mov ax,4c01h" \
"int 21h"
int main()
{
/*exit(1);
_exit(1);
__exit(1);*/
myexit();
return 1;
}
I compiled this with the overly complicated commandline
wine wcc '-i=C:\WATCOM\h\win;C:\WATCOM\h'-zW -e25 -zq -od -d2 -bw-bt=windows
foo.c
wine wlink file foo.obj
To test, do
wine foo.exe
echo $?
It should output 1, but it outputs 0.
--
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=36568
Bug ID: 36568
Summary: Darkorbit Bot "Palla by Palavia.exe" doesn't work with
crossover 13
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alessandro_policastro(a)virgilio.it
I tried to open this program: palla by palaver.exe with crossover, but it
crushes. The message says that there's a deficiency of Wine. What can i do?
--
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=36366
Bug ID: 36366
Summary: Path of Exile black screen with NVIDIA cards
Product: Wine
Version: 1.7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: smilzoboboz(a)gmail.com
PathOfExile.exe:
Both Loading screen and Menu (didn't go any further) appear black (with
periodic "actual content" flash).
As workaround changing HKCU/Software/Wine/Direct3D/OffscreenRenderingMode to
"backbuffer" makes things work again, but then there are huge shading issues.
This bug seems to have been present since 1.7.14.
--
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=30802
Bug #: 30802
Summary: When trying to run a Flyff private server, the error
message, "The program Neuzz.exe has encountered a
serious problem and needs to close. We are sorry for
the inconvenience."
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: snowkid67(a)gmail.com
Classification: Unclassified
The app was running fine through wine, I closed the program, and a few hours
later I kept receiving this error message. I tried installing the game on
another MAC computer and kept receiving the same error message. I believe the
problem is through wine because windows computers are not having a problem
loading the 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=13202
Summary: ClientSideWithRender fixes Auran Trainz text, but breaks
window elements in Steam
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: baloo(a)ursine.ca
Setting the registry key
HKEY_CURRENT_USER\Software\Wine\X11 Driver\ClientSideWithRender in Wine's
regedit fixes the infamous disappearing text problem in some games (such as the
Auran Trainz series), but causes some UI elements in Steam to become invisible.
--
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=26758
Summary: Makefile system does not respect AS variable
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdavis(a)mines.edu
As part of building Wine DLLs an executables, Winebuild generates assembly
files that are then assembled. If an assembler is specified using --as-cmd,
that program is used; otherwise the system assembler is used.
Wine's build system, unfortunately, does not allow the user to set the
assembler to pass to winebuild. The usual way to set the assembler to use is to
set the AS variable, but the build system does not respect it.
This is a problem, for example, on Mac OS X when building with Clang with its
integrated assembler turned on. Clang's integrated assembler supports .cfi
directives, but the system assembler doesn't. During configure, a test file
containing .cfi directives is passed to the compiler, on the assumption that it
would be then passed to the system assembler. With Clang's integrated
assembler, this assumption is broken. Thus, when winebuild tries to assemble
files containing .cfi directives (because it believes that the system assembler
supported them), it fails as a result. A workaround is to tell winebuild to use
Clang to assemble, but the Makefile system doesn't support that.
--
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=28101
Summary: wininet ftp tests slow
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Most tests are fast, but the slowest three here are
60 seconds: wininet ftp
34 seconds: ws2_32 sock
28 seconds: explorerframe nstc
...
Let's make the wininet ftp tests faster, they really don't need to take so
long.
--
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=8365
Brandon Corujo <haku08879(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |haku08879(a)gmail.com
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7902
Brandon Corujo <haku08879(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |haku08879(a)gmail.com
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3548
Brandon Corujo <haku08879(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |haku08879(a)gmail.com
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=1988
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |focht(a)gmx.net
Component|-unknown |wmp&wmvcore
Summary|It's seems impossible to |VCDEasy 3.x needs
|run VCDEasy-1.5.2 |MediaPlayer 6.x ActiveX
| |control
| |('{22D6F312-B0F6-11D0-94AB-
| |0080C74C7E95}' ->
| |'msdxm.ocx')
--- Comment #14 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
the app uses an ancient Media Player ActiveX control.
You need an old 6.x Media Player which bundles this ActiveX control.
WMP 7/9/10 will do nothing here, they no longer ship this control.
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/VCDEasy
$ WINEDEBUG=+tid,+seh,+relay wine ./VCDEasy.exe >>log.txt 2>&1
...
0023:Call advapi32.RegOpenKeyExA(80000000,00595138
"CLSID\\{22D6F312-B0F6-11D0-94AB-0080C74C7E95}\\InprocServer32",00000000,00020019,00affcfc)
ret=0044903f
0023:Ret advapi32.RegOpenKeyExA() retval=00000002 ret=0044903f
0023:Call advapi32.RegOpenKeyExA(80000000,00595138
"CLSID\\{22D6F312-B0F6-11D0-94AB-0080C74C7E95}\\InprocServer32",00000000,00020009,00affcfc)
ret=004490b7
0023:Ret advapi32.RegOpenKeyExA() retval=00000002 ret=004490b7
0023:Call advapi32.RegOpenKeyExA(80000000,00595138
"CLSID\\{22D6F312-B0F6-11D0-94AB-0080C74C7E95}\\InprocServer32",00000000,00000001,00affcfc)
ret=00449129
0023:Ret advapi32.RegOpenKeyExA() retval=00000002 ret=00449129
0023:Call KERNEL32.GetFullPathNameA(00b3a2a8
"msdxm.ocx",00000104,00affa74,00affb78) ret=0040ba49
0023:Ret KERNEL32.GetFullPathNameA() retval=00000022 ret=0040ba49
0023:Call KERNEL32.FindFirstFileA(00b3a2c0 "C:\\Program
Files\\VCDEasy\\msdxm.ocx",00affbc0) ret=0040b5de
0023:Ret KERNEL32.FindFirstFileA() retval=ffffffff ret=0040b5de
0023:Call KERNEL32.GetLastError() ret=0040b60d
0023:Ret KERNEL32.GetLastError() retval=00000002 ret=0040b60d
0023:Call KERNEL32.WinExec(00b3a374 "regsvr32 /s
C:\\windows\\system32\\dllcache\\msdxm.ocx",00000000) ret=00594a91
...
0023:Ret KERNEL32.WinExec() retval=00000021 ret=00594a91
...
0023:Call user32.DrawTextA(0004002a,00b37508 "Windows Media Player (required by
VCDEasy) does not seem to be installed (or fully installed) on this Windows.
\r\rPlease download it from
http://www.microsoft.com/mediaplayer/",000000b1,00affcb8,00000450) ret=004aea3d
0023:Ret user32.DrawTextA() retval=00000027 ret=004aea3d
--- snip ---
https://rti-source-spool.googlecode.com/svn/trunk/filer/msdxm.tlh
--- snip ---
struct __declspec(uuid("22d6f312-b0f6-11d0-94ab-0080c74c7e95"))
MediaPlayer;
// [ default ] interface IMediaPlayer2
// [ default, source ] dispinterface _MediaPlayerEvents
// interface IMediaBindStream
--- snip ---
There is no winetricks recipe for older 6.x Media Player redistributable hence
you need to download/install manually.
Download: www.oldapps.com/windows_media_player.php?old_windows_media_player=3
(NOTE: 16-bit installer parts vs. recent Linux kernels)
$ sha1sum mpfull.exe
44aef252a660612a01ee13271d84d2da3885e58d mpfull.exe
$ du -sh mpfull.exe
3.5M mpfull.exe
$ wine --version
wine-1.7.19-71-g94ccd61
Regards
--
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=3591
--- Comment #26 from Bernhard Reiter <ockham(a)raz.or.at> ---
I've sat down and produced a patch which I believe fixes this bug.
The patch, split in two parts, is found at
http://source.winehq.org/patches/data/104913 and
http://source.winehq.org/patches/data/104914
Anyone interested, please build Wine from git with those patches applied and
test if your py2exe/cx_Freeze/... package freezing works. Please report the
results here -- positive reports might help convince the Wine maintainer to
merge those patches into the official code!
--
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=36042
Bug ID: 36042
Summary: GTA IV wont start
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kimamb(a)hotmail.com
Created attachment 48196
--> http://bugs.winehq.org/attachment.cgi?id=48196
BACKTRACE
I HAVE UPGADED WINE THIS TIME.
i have no idea why. got an error log gough
--
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=35245
Bug ID: 35245
Summary: Unable to install Red Alert (C&C) because the setup
reports wrong Windows version
Product: Wine
Version: 1.7.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: florian.angermeier(a)desaster-games.com
Classification: Unclassified
I have tried to install the Windows 95 version of Red Alert (C&C) and got stuck
in the setup process because it found Windows version 5.1 (XP) instead of the
needed 95 version.
After I had looked into the Wine Configuration I found out that the lowest
version to set is Windows XP.
Is it possible to bring the possibility back to set the Windows version lower
than XP? I guess there more setups and programs which fail to get past the
version check. Did anyone encounter a similar situation?
--
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=36567
Bug ID: 36567
Summary: Sending a patch in newtestbot as a logged user
redirects to testbot.winehq.org where you may not be
logged
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
To send tests I always use the newtestbot.winehq.org, but after the test starts
running I'm redirected to the test page in testbot.winehq.org, I'm not logged
there so I can see the "Log in" item in the menu.
I can go back manually to newtestbot and select the test I'm running so I think
this is just a redirect issue that is using the old name.
Another solution would be to extend the cookie to be valid in the whole domain
instead of the subdomain only, that may require extra work though.
--
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=6955
Béla Gyebrószki <gyebro69(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |billy65bob(a)gmail.com
--- Comment #139 from Béla Gyebrószki <gyebro69(a)gmail.com> ---
*** Bug 24494 has been marked as a duplicate of this bug. ***
--
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=8272
Béla Gyebrószki <gyebro69(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |saleck(a)saleck.net
--- Comment #34 from Béla Gyebrószki <gyebro69(a)gmail.com> ---
*** Bug 34615 has been marked as a duplicate of this bug. ***
--
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=8272
Béla Gyebrószki <gyebro69(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|download |
URL|http://wood.sandbox.cz/wiza |
|rdry8-demo/wizardry8demo.ex |
|e |
CC| |gyebro69(a)gmail.com
--- Comment #33 from Béla Gyebrószki <gyebro69(a)gmail.com> ---
I can't reproduce the problem with the linked demo version (v1.0.0) so I
removed the download link.
The GOG.com version of the game (1.2.4) however, does have the problem and it
is still present in wine-1.7.19-70-gd6a59f7. On exit the game hangs with
>err:ntdll:RtlpWaitForCriticalSection section 0x8212b0 "\xb0K\xf9\x0b\xa0K\xf9\x0b\xe0U\xf9\x0b\xf0U\xf9\x0b" wait timed out in thread 0041, blocked by 0000, retrying (60 sec)
I found that using native msvcp60 and msvcrt together makes the problem go away
and the game exits normally.
--
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=36502
Bug ID: 36502
Summary: FarCry 3 fail to launch
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cogrossisimone(a)gmail.com
Created attachment 48577
--> http://bugs.winehq.org/attachment.cgi?id=48577
Backtrace
When i try to run it, it loads up the menu then closes and sends me an error
saying that the program has encoutered a serious problemand needs to close,it
also mentioned that can be cause by a program or a deficiency in Wine.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=36515
Bug ID: 36515
Summary: Garmin Express: Installer doesn't launch
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nikos42(a)gmail.com
Created attachment 48586
--> http://bugs.winehq.org/attachment.cgi?id=48586
Terminal output when launching Garmin Express installer
The installer for Garmin Express doesn't start when launched under Wine.
The installer can be downloaded for free from here:
http://software.garmin.com/en-US/express-download.html#win
--
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=36535
Bug ID: 36535
Summary: the guy game crashes when i click play at the startup
menu
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tedwaltmuf(a)yahoo.com
i click the wrapper and there is a splash screen.it goes to a menu with 3
buttons "paly,configure, quit" i click play the game loads a bit then crashes.
it says Unhandled exception: page fault on read access to 0x8b000018 in 32-bit
code. the rest of the crash report is attatched.
--
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=36495
Bug ID: 36495
Summary: Layout section of CutlistPlus causes program to bomb
out, after working normally for some years
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stonypoint44(a)gmail.com
CutlistPlus started bombing out after working normally for a few years
--
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=26322
Summary: Grand Theft Auto: Vice City (2003) rendering problems
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Install and run GTA: Vice City as follows:
rm -rf ~/.wine
cd /media
wine GTA_Vice_City/setup.exe (uncheck Radio Station to avoid needing disc 2)
# eject disc1 and mount disc2
# work around wine not creating symlink for d:, e.g.
ln -s /dev/cdrom ~/.wine/dosdevices/d::
ln -s /media/Vice_City_Play /home/dank/.wine/dosdevices/d:
# start the game!
cd ~/".wine/drive_c/Program Files/Rockstar Games/Grand Theft Auto Vice City"
wine gta-vc.exe
Happily, this even plays the intro movies and recognizes the disc.
Unhappily, the first cut scene (where the gangsters are sitting around
a table discussing what to do with a guy who's just getting out of jail)
has really, really low fps.
The appdb suggests using OffscreenRenderMode=pbuffer, but that was removed
in wine-1.1.41.
OffscreenRenderMode=backbuffer gets the performance of that scene up nicely.
Either way, the next scene, where a car is driving around,
doesn't show the cars.
And when that finishes, you're supposed to drive around, but everything
looks completely wrong, all one can see are clouds.
POL uses wine-1.1.40 for this game, fwiw.
--
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=36529
Bug ID: 36529
Summary: OLE fails to load a Typelib
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
Assignee: wine-bugs(a)winehq.org
Reporter: guillaume.charifi(a)sfr.fr
Created attachment 48613
--> http://bugs.winehq.org/attachment.cgi?id=48613
The test file
When a Typelib is embedded into a program, and references a type defined in
another Typelib also embedded into the program, Wine fails to locate the
TypeLib and cannot resolve the type, so the application crashes.
The test program joined displays a failure message on Wine, but works on
Windows, so maybe it's an undocumented Windows behaviour.
This bug must be the same than http://bugs.winehq.org/show_bug.cgi?id=34184
--
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=35790
Bug ID: 35790
Summary: Error finding libpng15.so.15 (Affects Microsoft Visual
C++ Redistributable 2013 (x86) installer and Microsoft
Visual C++ Redistributable 2013 (x86_64) installer and
indirectly affects all C/C++ applications compiled
with Visual Studio 2013)
Product: Wine
Version: 1.7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: thehairyrock(a)gmail.com
Created attachment 47783
--> http://bugs.winehq.org/attachment.cgi?id=47783
Error logs from the installers.
This causes the installer for Visual C++ 2013 Runtime Redistributable to crash,
It affects both the x86 version and the x86_64 version on both types of
prefixes.
p.s. - I checked my system path and installed packages and libpng15 is
installed, I also re-installed wine and encountered the same issue.
p.p.s - I did not test the ARM installer to see if it encountered the same
error, as i don't have wine ARM.
--
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=36543
Bug ID: 36543
Summary: Fedora 20: Wolfenstein the new order crashes on
startup
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: turgut(a)kalfaoglu.com
The game installs fine, but fails to start, no mention of GL_VENDOR in the log.
It just gives a segmentation error and quits.
I'm using the latest wine for fedora 20.
--
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=36503
Bug ID: 36503
Summary: Combat Manager Crashes
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: moisesoliveira.mj(a)gmail.com
Created attachment 48579
--> http://bugs.winehq.org/attachment.cgi?id=48579
Combat Manager (Backtrace)
The software Combat Manager crashes and the debug shows the message attached to
the report.
--
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=36530
Bug ID: 36530
Summary: Age of Empires II: Black screen on start, sound plays
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michal.nowak(a)resist.ca
Created attachment 48615
--> http://bugs.winehq.org/attachment.cgi?id=48615
Wine 1.7.19 log
Age of Empires II: Forgotten Empires (but also Kings and Conquerors) fail to
show main menu on start, Wine shows black screen instead. I am able to place
cursor where Exit button should be and reliably quit (no freeze).
This happens with Wine 1.7.19 (Fedora) however 1.6.1 works as expected. Logs
from both versions attached as well as run with 1.7.19 enriched with DXPlay
libs from winetricks (which does not work either).
I use x86_64 system but the game is 32-bit. I have a parallel installation of
both 64- and 32-bit libs.
Graphics card is Radeon HD 7500M/7600M Series.
--
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=36516
Bug ID: 36516
Summary: Advego Plagiatus: Crash at start
Product: Wine
Version: 1.6.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pr0sto(a)hotmail.com
exception when I click open with WINE (v.1.6.1) on Advego Plagiatus v.1.3.0.94
(http://advego.ru/plagiatus/advego_plagiatus.zip)
....see more in attachment
--
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=36494
Bug ID: 36494
Summary: Hearthstone shows question marks for Cyrillic text in
chat
Product: Wine
Version: 1.7.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: x-pilot(a)xakep.ru
Created attachment 48570
--> http://bugs.winehq.org/attachment.cgi?id=48570
Screenshot of Heartstone with type "test/тест" text
When I try to send a message to my friends via Hearthstone's chat overlay, it
works only for Latin characters. Russian (Cyrillic) are shown as question marks
("?"). Recipients confirm that they receive it as question marks on their side.
On Windows XP text sends correctly (so, it's not game's issue). I don't have
such problem with chat in Steam, when I launch windows version under wine (so,
it shouldn't be an issue with locale).
wine: wine-1.7.17;
Ubuntu 14.04;
Main locale: "LANG=en_US.UTF-8";
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=29049
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #3 from Austin English <austinenglish(a)gmail.com> ---
Closing.
--
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=36522
Bug ID: 36522
Summary: horizon
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joenow(a)live.com
Created attachment 48604
--> http://bugs.winehq.org/attachment.cgi?id=48604
error log
I'm trying to install horizon (the xbox game save mod) through wine but it gets
through 3/4 for installing and errors out. Attached is the backtrace log
explaining why it crashed. I have uninstalled, purged then re-installed the
app.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31405
Bug #: 31405
Summary: Wine not playing GTA San Andreas
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ibrahim.chhaya(a)gmail.com
Classification: Unclassified
Hi, when I install GTA San Andreas it's perfectly fine but when I go to wine
and play the game the screen becomes black and slowly changes to white, then
white to black repeatedly
--
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=31099
Bug #: 31099
Summary: powerpoint crashes when trying to save
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: juanmamompo(a)hotmail.com
Classification: Unclassified
Created attachment 40827
--> http://bugs.winehq.org/attachment.cgi?id=40827
generated error file
i can open a ppt but I'm not allowed to save the changes.
Also have problems opening the folder to select the file I want to open. my
guess is there is a problem with explorer.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=29338
Bug #: 29338
Summary: The program Rhino.exe has encountered a serious
problem and needs to close. We are sorry for the
inconvenience
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gsaumure79(a)videotron.ca
Classification: Unclassified
The program just run fine, but I get an error message when I close the program.
The program Rhino.exe has encountered a serious problem and needs to close. We
are sorry for the inconvenience.
This issue is not very serious, just annoying. And the problem seems to appear
since I have upgraded from Linux Mint 11 to Linux Mint 12.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36150
Bug ID: 36150
Summary: valgrind shows a few leaks in
dlls/msi/tests/automation.c
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Definitely:
==2682== 32 bytes in 1 blocks are definitely lost in loss record 248 of 740
==2682== at 0x7BC4C6B7: notify_alloc (heap.c:255)
==2682== by 0x7BC50EFB: RtlAllocateHeap (heap.c:1716)
==2682== by 0x6208297: heap_alloc (typelib.c:1664)
==2682== by 0x62112EC: ITypeLib2_fnGetLibAttr (typelib.c:4984)
==2682== by 0x6204868: LoadRegTypeLib (oaidl.h:2672)
==2682== by 0x539DD76: get_typeinfo (automation.c:97)
==2682== by 0x539E67E: AutomationObject_GetIDsOfNames (automation.c:296)
==2682== by 0x4E6DDF7: get_dispid (oaidl.h:814)
==2682== by 0x4E6DE74: test_dispid (automation.c:601)
==2682== by 0x4E7CD05: func_automation (automation.c:2765)
==2682== by 0x4F98E4B: run_test (test.h:584)
==2682== by 0x4F9923A: main (test.h:654)
possibly:
==2606== 28 bytes in 1 blocks are possibly lost in loss record 200 of 740
==2606== at 0x7BC4C6B7: notify_alloc (heap.c:255)
==2606== by 0x7BC50EFB: RtlAllocateHeap (heap.c:1716)
==2606== by 0x5896826: COMPOBJ_DllList_Add (compobj.c:526)
==2606== by 0x5898B62: apartment_getclassobject (compobj.c:1335)
==2606== by 0x589C2AC: get_inproc_class_object (compobj.c:2894)
==2606== by 0x589C76B: CoGetClassObject (compobj.c:3032)
==2606== by 0x589CD2D: CoCreateInstance (compobj.c:3197)
==2606== by 0x4EA8C4B: func_automation (automation.c:2757)
==2606== by 0x4FC4E4B: run_test (test.h:584)
==2606== by 0x4FC523A: main (test.h:654)
==2606== 28 bytes in 1 blocks are possibly lost in loss record 201 of 740
==2606== at 0x7BC4C6B7: notify_alloc (heap.c:255)
==2606== by 0x7BC50EFB: RtlAllocateHeap (heap.c:1716)
==2606== by 0x6228202: heap_alloc_zero (typelib.c:1657)
==2606== by 0x622AE41: MSFT_ReadAllRefs (typelib.c:2897)
==2606== by 0x622D0EC: ITypeLib2_Constructor_MSFT (typelib.c:3711)
==2606== by 0x622C358: TLB_ReadTypeLib (typelib.c:3455)
==2606== by 0x6224694: LoadTypeLibEx (typelib.c:478)
==2606== by 0x62245D0: LoadTypeLib (typelib.c:454)
==2606== by 0x6224822: LoadRegTypeLib (typelib.c:537)
==2606== by 0x53B5D76: get_typeinfo (automation.c:97)
==2606== by 0x53B667E: AutomationObject_GetIDsOfNames (automation.c:296)
==2606== by 0x4E99DF7: get_dispid (oaidl.h:814)
==2606== by 0x4E99E74: test_dispid (automation.c:601)
==2606== by 0x4EA8D05: func_automation (automation.c:2765)
==2606== by 0x4FC4E4B: run_test (test.h:584)
==2606== by 0x4FC523A: main (test.h:654)
==2606==
--
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=15892
Summary: BYOND Crash
Product: Wine
Version: 1.1.7
Platform: PC
URL: http://www.byond.com
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stevenw9(a)gmail.com
Created an attachment (id=17050)
--> (http://bugs.winehq.org/attachment.cgi?id=17050)
BYOND Crash Debug Output
BYOND suddenly crashes when launching the game: BYOND Tabletop Game. I'm not
sure why, so I placed some debug info underneath 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=36497
Bug ID: 36497
Summary: HLSL Effect compiler and disasmbler crashing when
trying to open an effect file
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: infyquest(a)gmail.com
HLSL Effect compiler and disasmbler crashing when trying to open an effect file
The effect compiler can be downloaded from
http://theinstructionlimit.com/samples/EffectCompiler/EffectCompiler.zip
It crashes with the below log:
[vijay@DellArch EffectCompiler]$ wine EffectCompiler.exe
libgluezilla not found. To have webbrowser support, you need libgluezilla
installed
libgluezilla not found. To have webbrowser support, you need libgluezilla
installed
fixme:wincodecs:PngDecoder_Block_GetCount stub
System.NullReferenceException: Object reference not set to an instance of an
object
at System.Windows.Forms.WebBrowser.Refresh (WebBrowserRefreshOption opt)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.WebBrowser.Refresh () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Form.OnEnabledChanged (System.EventArgs e) [0x00000]
in <filename unknown>:0
at System.Windows.Forms.Control.set_Enabled (Boolean value) [0x00000] in
<filename unknown>:0
at (wrapper remoting-invoke-with-check)
System.Windows.Forms.Control:set_Enabled (bool)
at System.Windows.Forms.Form.ShowDialog (IWin32Window owner) [0x00000] in
<filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.Form:ShowDialog
(System.Windows.Forms.IWin32Window)
at System.Windows.Forms.CommonDialog.ShowDialog (IWin32Window owner)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.CommonDialog.ShowDialog () [0x00000] in <filename
unknown>:0
at (wrapper remoting-invoke-with-check)
System.Windows.Forms.CommonDialog:ShowDialog ()
at EffectCompiler.CompilerForm.BrowseButton_Click (System.Object sender,
System.EventArgs e) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.OnClick (System.EventArgs e) [0x00000] in
<filename unknown>:0
at System.Windows.Forms.Button.OnClick (System.EventArgs e) [0x00000] in
<filename unknown>:0
at System.Windows.Forms.ButtonBase.OnMouseUp
(System.Windows.Forms.MouseEventArgs mevent) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Button.OnMouseUp (System.Windows.Forms.MouseEventArgs
mevent) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.WmLButtonUp (System.Windows.Forms.Message& m)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.ButtonBase.WndProc (System.Windows.Forms.Message& m)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Button.WndProc (System.Windows.Forms.Message& m)
[0x00000] in <filename unknown>:0
at System.Windows.Forms.Control+ControlWindowTarget.OnMessage
(System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control+ControlNativeWindow.WndProc
(System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr
wParam, IntPtr lParam) [0x00000] in <filename unknown>:0
Shutting down finalizer thread timed out.
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
abnormal program termination
--
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=34424
Bug #: 34424
Summary: Can't log into Star Trek Online
Product: Wine-gecko
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: alexhenrie24(a)gmail.com
Classification: Unclassified
Star Trek Online creates an IEframe showing
http://launcher.startrekonline.com/launcher_login. When you click "Login",
nothing happens.
When you go to the same web page in Firefox, Firefox's error console gets
"Security Error: Content at http://launcher.startrekonline.com/launcher_login
may not load or link to app://4/."
Installing ie8 from winetricks gets around the problem.
This leads me to believe that wine-gecko is not properly emulating Internet
Explorer's cross-site data restriction policies.
--
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=9127
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |NEW
CC| |focht(a)gmx.net
Hardware|Other |x86
Summary|Games video movies are not |Multiple games fail to play
|playable |intro videos/movies (quartz
| |MPEG splitter: MPEG-1
| |system streams not
| |supported)
--- Comment #54 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
confirming, still present.
Refining summary.
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Rockstar Games/Grand Theft Auto San
Andreas
$ WINEDEBUG=+tid,+seh,+loaddll,+quartz wine ./gta_sa.exe >>log.txt 2>&1
...
0024:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\msvfw32.dll" at 0x7c420000: builtin
0024:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\quartz.dll"
at 0x7c450000: builtin
0024:trace:quartz:DllGetClassObject
({e436ebb3-524f-11ce-9f53-0020af0ba770},{00000001-0000-0000-c000-000000000046},0x177f068)
0024:trace:quartz:DSCF_CreateInstance
(0x3232378)->((nil),{56a868a9-0ad4-11ce-b03a-0020af0ba770},0xc920d4)
0024:trace:quartz:FilterGraph_create ((nil),0x177efec)
...
0024:trace:quartz:GetClassMediaFile ((nil), L"movies\\Logo.mpg", (nil), (nil))
0024:trace:quartz:GetClassMediaFile L"Extensions"
0024:trace:quartz:GetClassMediaFile L"{E436EB83-524F-11CE-9F53-0020AF0BA770}"
0024:err:quartz:GetClassMediaFile Media class not found
...
0024:trace:quartz:FilterGraph2_AddFilter (0x32324e8/0x32324ec)->(0x3236f58,
L"MPEG-I Stream Splitter" (0x3236b4c))
0024:trace:quartz:Parser_SetSyncSource ((nil))
0024:trace:quartz:Parser_GetPin Asking for pos 0
0024:trace:quartz:FileAsyncReaderPin_AttemptConnection (0x3237138, 0x3237430)
0024:trace:quartz:dump_AM_MEDIA_TYPE MEDIATYPE_Stream
MEDIASUBTYPE_MPEG1System
...
FORMAT_None
0024:trace:quartz:Parser_PullPin_ReceiveConnection ()
0024:trace:quartz:PullPin_ReceiveConnection (0x3237138/0x3237138)->(0x3232ad0,
0x3237430)
0024:trace:quartz:dump_AM_MEDIA_TYPE MEDIATYPE_Stream
MEDIASUBTYPE_MPEG1System
...
FORMAT_None
0024:fixme:quartz:MPEGSplitter_query_accept MPEG-1 system streams not yet
supported.
...
0024:warn:quartz:FilterGraph2_Render Unable to connect L"MPEG-I Stream
Splitter" to renderer (80040207)
--- snip ---
$ wine --version
wine-1.7.19-70-gd6a59f7
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=29049
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
CC| |focht(a)gmx.net
Resolution|--- |INVALID
--- Comment #2 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
no further response from OP.
Please learn how to properly report bugs: http://wiki.winehq.org/Bugs
Resolving 'invalid'.
Regards
--
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=34509
Bug #: 34509
Summary: wine does not install - obsolete dependencies searched
for
Product: Wine
Version: 1.6-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
Classification: Unclassified
Wine does not install properly in the latest development versions.
There are several problems.
The first is that the following programs are updated:
wine
wine1.6
wine1.6-amd64
But the 386 version of the package is not, or doesn't appear on the list.
wine1.6-i386:i386
The second problem is that the dependencies do not install correctly.
There appear to be a couple of problems with this. The first one that pops up
after the command: apt-get build-dep wine is the following:
E: Build-Depends dependency for wine1.6 cannot be satisfied because the package
libgphoto2-2-dev cannot be found
Well, at first that package was not there at all, having been replaced by two
packages (386 and amd64); however, the transitional package that installed both
of them was not available.
But today libphoto in any flavor has vanished.
--
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=31097
Bug #: 31097
Summary: wine apps crash when using opengl
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)leon.vankammen.eu
Classification: Unclassified
It seems that the latest 1.5.7 wine-package doesnt like libgl/dri-driver 8.x.x
(win32 apps crash in wine as soon as opengl is called)..however if you install
libgl/dri-driver 7.x.x everything works.
more info about configuration etc: https://bugs.archlinux.org/task/30501
As stated, I got it working with older libgl/dri-driver libs now but I will try
to generate some more debugging info.
The friendly guys @ archlinux pointed out the 'LIBGL_DEBUG=verbose wine
foo.exe' trick, any other suggestions?
btw. pretty neato bugtracker with the possible duplicates-checker :)
--
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=27848
Summary: Crysis2 freezes/hangs since wine 1.3.22 (ReportFault
0xc65de0c)
Product: Wine
Version: 1.3.24
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rockorequin(a)hotmail.com
Crysis 2 runs fine on wine 1.3.21 on my PC with an nvidia 540M card, but in
versions 1.3.22 and onwards it freezes at a random point usually less than a
minute after gameplay starts with the error:
fixme:faultrep:ReportFault 0xc65de0c 0x0 stub
At this point, the music continues to play (it doesn't appear to be looping)
but the graphics are frozen, so I'm guessing it's a d3d issue.
I have the various directX 9 and 10 native libraries enabled via winetricks and
the Crysis patch applied to wine.
Running it in wine 1.3.24, I also get
"fixme:d3d_texture:wined3d_texture_generate_mipmaps texture 0x6aa3928 stub!"
errors, but these don't appear to cause the freeze.
--
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=1719
Sylvain Petreolle <spetreolle(a)yahoo.fr> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=3897
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |2919a9a7a8c52b705195690664c
| |234faad9766e1
CC| |focht(a)gmx.net
--
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=14882
Summary: UpdateResource fails to delete a resource
Product: Wine
Version: 1.1.2
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johnlen7+wine(a)gmail.com
UpdateResource should, according to MSDN, delete a resource if
(!lpData)&&(!cbData). This is actually the way applications can delete
resources and various resource-related application, like InnoSetup, use it.
However wine's current implementation of UpdateResourceW unconditionally calls
allocate_resource_data, which will fail if either lpData or cbData is NULL.
I hope I can fix it, but I will need to familiarize myself with kernel32 code
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=4405
Ken Sharp <imwellcushtymelike(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks| |32439
--
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=22280
Summary: Assassin's Creed: compatibility test app aborts when
KERNEL32.SetThreadPriorityBoost fails
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The Assassin's Creed installer runs
Program Files/Ubisoft/Assassin's Creed/Detection/Detection.exe
at the end. This is supposed to pop up a screen showing
whether various components of your system meet minimum spec for the game.
It crashes on wine after calling KERNEL32.SetThreadPriorityBoost.
That function always returns FALSE on wine. Changing it to return TRUE
lets Detection.exe work properly.
--
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=36478
Bug ID: 36478
Summary: --enable-fonts is missing in ./configure
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: t.artem(a)mailcity.com
Created attachment 48541
--> http://bugs.winehq.org/attachment.cgi?id=48541
Patch
$ ./configure --help | grep font
--without-fontconfig do not use fontconfig
C compiler flags for fontconfig, overriding pkg-config
Linker flags for fontconfig, overriding pkg-config
This looks wrong.
Please, add a missing description for an already existing option.
--
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=3864
Pekka Helenius <fincer89(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fincer89(a)hotmail.com
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=36471
Bug ID: 36471
Summary: Cannot install wine
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: davidliang201(a)gmail.com
Having trouble install wine. After entering "sudo apt-get install wine1.6" it
keeps saying the following. Sorry if this has been asked before but it's the
first time I have installed Ubuntu to dual-boot on an Acer C720 Chromebook.
--
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=36488
Bug ID: 36488
Summary: [regedit] problems with Unicode characters in .reg
files and in GUI
Product: Wine
Version: 1.7.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: nikoamia(a)gmail.com
There are two problems with "regedit":
1. It improperly parses Unicode characters. E.g., try to import this .reg file:
REGEDIT4
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements]
"MS ゴシック"="TakaoGothic"
"MS 明朝"="TakaoMincho"
In registry, there will be multiple unreadable characters instead of kanji,
which suggests that regedit expects ASCII while parsing.
2. If I manage to create these entries (it can be accomplished with creating
entry in GUI), their names are showed as "square characters" in GUI.
--
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=36453
Bug ID: 36453
Summary: When creating a new wine prefix, installation of gecko
and mono fails
Product: Wine
Version: 1.7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: donquixote93(a)gmail.com
Running Archlinux 64bit and creating a 32bit prefix while having the wine_gecko
and wine-mono packages installed. Despite this, installation of these two
components fails due to some MSI-related error (the cause is beyond me). Log
explains everything.
--
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=36452
Bug ID: 36452
Summary: Age Of Mythology: Extended edition
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pierre(a)reactos.org
Created attachment 48482
--> http://bugs.winehq.org/attachment.cgi?id=48482
Wine log
The newly released edition of Age Of Mythology: Extended edition appears to
fail starting on Wine 1.7.18.
When starting, it just displays an error message box stating: Initialization
Failed.
No more details. You'll find attached an extract of the Wine log corresponding
to the moment I click on play and the moment I click OK on the message box.
--
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=36467
Bug ID: 36467
Summary: wine demangle bug
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: christopherwuy(a)gmail.com
1.The symbol:
put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAV
2.The correct result in Windows vs2008 undname
public: class std::ostreambuf_iterator<char,struct std::char_traits<char> >
__thiscall std::num_put<char,class std::ostreambuf_iterator<char,struct
std::char_traits<char> > >::put(class std::ostreambuf_iterator<char,struct
std::char_traits<char> >,class ?? &, ?? )const throw( ?? )
3.The wrong result in Wine
put@num_put<char,class std::ostreambuf_iterator<char,struct
std::char_traits<char> > >
--
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=32190
Bug #: 32190
Summary: Forex Stategy cant be loaded
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dyvazar(a)numericable.fr
Classification: Unclassified
on Ubuntu 12.10 i386 with fresh wine 1.5.17 install:
i try to load an ".net2" app but loading enter into an infinite loop with the
errors at the beginning:
fixme:exec:SHELL_execute flags ignored: 0x00000100
err:exec:shellex_load_object_and_run failed to get data object
fixme:exec:SHELL_execute flags ignored: 0x00000100
err:exec:shellex_load_object_and_run failed to get data object
then continue flooding with:
fixme:wincodecs:PngDecoder_Block_GetCount 0x160fed0,0x33ef18: stub
This is a free software: http://forexsb.com/wiki/download
Both builder & trader refuse to load.
--
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=34670
Bug #: 34670
Summary: ManiaPlanet thinks it's not connected to the internet
Product: Wine
Version: 1.7.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yoyoheadshrinker(a)gmx.net
Classification: Unclassified
Created attachment 46214
--> http://bugs.winehq.org/attachment.cgi?id=46214
stdout/stderr steam
ManiaPlanet.exe (needed for Trackmania and other mania games) shows a message
that it can't connect to it's mania servers. If you retry and enter a wrong
password for your account it will realize that the passwords are wrong. If you
enter a correct password it will still claim that you are not connected to the
internet.
The attachment contains stdout/stderr of
-start steam
-start trackmania
-connection failed
-exit trackmania
-exit steam
wine 1.7.2+wine 1.6 did work 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.
https://bugs.winehq.org/show_bug.cgi?id=36250
Bug ID: 36250
Summary: valgrind shows an uninitialized value in
ddraw/tests/ddraw{1,2}.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==28116== Conditional jump or move depends on uninitialised value(s)
==28116== at 0x579FF6C: GetRegionData (region.c:889)
==28116== by 0x498BE85: ddraw_clipper_GetClipList (clipper.c:213)
==28116== by 0x49B6590: ddraw_surface_blt_clipped (surface.c:1429)
==28116== by 0x49B6C1E: ddraw_surface7_Blt (surface.c:1537)
==28116== by 0x49B7073: ddraw_surface1_Blt (surface.c:1597)
==28116== by 0x4C6AD8E: test_clipper_blt (ddraw1.c:714)
==28116== by 0x4C83531: func_ddraw1 (ddraw1.c:5330)
==28116== by 0x4D1E890: run_test (test.h:584)
==28116== by 0x4D1EC7F: main (test.h:654)
==28116== Uninitialised value was created by a stack allocation
==28116== at 0x49B6315: ddraw_surface_blt_clipped (surface.c:1366)
==28116==
--
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=14222
Summary: RpcBindingSetAuthInfo(Ex) fails with
RPC_C_AUTHN_GSS_NEGOTIATE
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winesku(a)googlemail.com
RpcBindingSetAuthInfo(Ex) fails with RPC_S_UNKNOWN_AUTHN_SERVICE if
RPC_C_AUTHN_GSS_NEGOTIATE is specified. While this looks correct at first
glance, because WINE's secur32.dll currently has no Negotiate provider, but
instead only an NTLM provider, it is not what applications expect. Since
Windows 2000, RPC clients that call RpcBindingSetAuthInfo(Ex) can at least
expect that this call succeeds with the selection of NTLM, even in non-domain
environments. Therefore WINE's RpcBindingSetAuthInfo(Ex) should make a fallback
to RPC_C_AUTHN_WINNT if RPC_C_AUTHN_GSS_NEGOTIATE is requested by the caller
but only NTLM is available. After all, by specifying RPC_C_AUTHN_GSS_NEGOTIATE,
the client indicated that NTLM is sufficient.
--
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=33797
Bug #: 33797
Summary: DigiCel FlipBook crashes when attempting to load the
main UI.
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: adam.buchbinder(a)gmail.com
Classification: Unclassified
Created attachment 44792
--> http://bugs.winehq.org/attachment.cgi?id=44792
Backtraced output from the crash handler.
When running the demo version of DigiCel FlipBook 6.86, it begins by popping up
the try/buy/unlock dialogue. Clicking the 'try' button attempts to load the
main UI, but crashes.
Other information:
$ wine --version
wine-1.5.31
$ uname -i -r
3.5.0-32-generic x86_64
$ lsb_release -d
Description: Ubuntu 12.04.2 LTS
[This version of WINE is from the Ubuntu PPA.]
$ aptitude show wine1.5
Package: wine1.5
New: yes
State: installed
Automatically installed: no
Multi-Arch: allowed
Version: 1.5.31-0ubuntu2
Priority: optional
Section: otherosfs
Maintainer: Scott Ritchie <scottritchie(a)ubuntu.com>
Architecture: amd64
Program I'm trying to run: DigiCel Flipbook 6.86.
Download URL: http://www.flipbookpro.com/download/SETUPFB686.EXE
Command line used:
$ wine ~/.wine/drive_c/Program\ Files/FlipBook.exe
No application-specific crash dialog is presented.
Terminal output will be attached subsequently.
To reproduce:
1) Install FlipBook. (You'll have to specify the install directory manually, as
the default is '#Program Files#\DigiCel'.)
2) Run FlipBook, okaying the dialogs that come up.
3) Click 'Try it'.
Please let me know if there's any other information I can provide.
--
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=18592
Summary: ICQ 6.x unhandled page fault
Product: Wine
Version: 1.1.21
Platform: PC
URL: http://ftp.icq.com/pub/ICQ65/install_icq65.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21264)
--> (http://bugs.winehq.org/attachment.cgi?id=21264)
Wine 1.1.22 +relay +seh +tid
ICQ 6 and 6.5 cause an unhandled page fault on launch and exit immediately.
Looks like something AOL have added:
=>0 0x6c01bb46 in aolsvcmgr (+0x1bb46) (0x0032fcdc)
0009:Ret PE DLL (proc=0x6c03ec09,module=0x6c000000
L"AOLSvcMgr.dll",reason=PROCESS_ATTACH,res=(nil)) retval=1
To get this far, "winetricks mfc42 msxml3 dcom98" required.
--
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=26717
Summary: Minitroid tech demo shows animation then stops
Product: Wine
Version: 1.3.13
Platform: x86-64
URL: http://www.metroid-database.com/fanapps/MinitroidTechD
emo.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: toddrme2178(a)gmail.com
Created an attachment (id=34032)
--> (http://bugs.winehq.org/attachment.cgi?id=34032)
commandline output when running "wine MinitroidTechDemo.exe"
When starting the Minitroid tech demo, I get the following error message:
Program Error
The program MinitroidTechDemo.exe has encountered a series problem and needs
to close. We are sorry of the inconvenience.
there is a brief animation in the window, then the window goes black. No
further interaction is possible. I cannot click on the window or the error
message, which means I cannot close the error message. I have to use ctrl-c to
make it stop.
As a workaround for Bug 26710 for the Minitroid tech demo, native d3dx9_36 was
used in this case.
--
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=23593
Summary: Supreme Commander 2 Demo: Rendering artifacts
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eg.galano(a)gmail.com
Created an attachment (id=29493)
--> (http://bugs.winehq.org/attachment.cgi?id=29493)
Supreme Commander 2 Graphic Bug
As reported on the game's AppDB entry, the game has some rendering artifacts
that require some workarounds to remove.
Attached a screenshot of one of the graphic errors but there is also another
error when scrolling the world view which was hard to get a screenshot of.
To get rid of the artifacts do the following:
- winetricks orm=backbuffer multisamping=enabled
- nvidia-xconfig --no-dynamic-twinview
If you would like to duplicate, the demo is downloadable via steam.
--
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=16484
Summary: Dramatica Demo 4.0 file open dialog has the file name
text box cursor in an incorrect position
Product: Wine
Version: 1.1.10
Platform: PC
URL: http://www.softpedia.com/get/Others/Miscellaneous/Dramat
ica-Pro.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=17882)
--> (http://bugs.winehq.org/attachment.cgi?id=17882)
Dramatica Demo 4.0 file open dialog on Windows
While testing bug 16483, I noticed that when opening the file open dialog (File
-> Open), the initial placement of the file name text box cursor seems to be in
the middle of the text box control rather than at the starting left side, as it
is on Windows. If the dialog box is clicked on, the cursor is restored to its
normal location. Screenshots are 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=29534
Bug #: 29534
Summary: RIFF File Viewer crashes on choosing an item in a
context menu
Product: Wine
Version: 1.3.36
Platform: x86-64
URL: http://mda.smartelectronix.com/bin/riffview.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Created attachment 38266
--> http://bugs.winehq.org/attachment.cgi?id=38266
Terminal output
Right-clicking in the text area to the right and choosing any option from the
context menu results in a crash. However, there's no crash when using the
equivalent keyboard shortcuts. This application needs msvbvm50.dll, so I've
used winetricks vb5run to install it.
Same problem in 1.2.3, 1.0.1, and 0.9.33. Neither winetricks dcom98 (in 1.2.3)
nor winetricks usp10 helps.
--
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=30694
Bug #: 30694
Summary: Fallout 3 Launcher Crashes Instantly
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iyeru42(a)gmail.com
Classification: Unclassified
Created attachment 40196
--> http://bugs.winehq.org/attachment.cgi?id=40196
it exits terminal input once it finishes here. Disallowing real trace.
How do I load DLC Files without having the launcher come 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=36108
Bug ID: 36108
Summary: Chantelise crashes on start
Product: Wine
Version: 1.7.14
Hardware: x86
URL: http://www.carpefulgur.com/chantelise/CE_demo.exe
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-dmusic
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: bunglehead(a)gmail.com
Regression SHA1: 347da355bac706b2b77774c16c4ce410f9624007
Created attachment 48289
--> http://bugs.winehq.org/attachment.cgi?id=48289
terminal output
This bug affects 2 games from the developer Carpe Fulgur (Recettear and
Chantelise). These games crash after launching.
Music didn't work in these games without native directmusic dlls, but the games
used to start up normally until
347da355bac706b2b77774c16c4ce410f9624007 is the first bad commit
commit 347da355bac706b2b77774c16c4ce410f9624007
Author: Nikolay Sivov <nsivov(a)codeweavers.com>
Date: Thu Feb 27 09:34:27 2014 +0400
dmime: COM cleanup of IDirectMusicSegmentState8 interface.
:040000 040000 eab378f9e58e8da06339d68963b2c54f668465c6
75633895a5199fafbc680f49798329d8c30f23c9 M dlls
'winetricks directmusic' is a workaround to the crash.
CE_demo.exe (255 MB download size)
md5sum: 01756d4e7f6afd13ef395260172304f4
wine-1.7.17-92-ge2bf516
--
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=18447
Summary: fr-minus-012 hangs without doing seemingly anything
Product: Wine
Version: 1.1.21
Platform: PC-x86-64
URL: http://www.pouet.net/prod.php?which=52358
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roothorick(a)new.rr.com
When you run the demo, nothing pops up. No window, no loading bar, no
configuration dialog, nothing. But it's still running. Just sitting there,
waiting for something that never happens I guess.
The only console output is three lines:
fixme:d3d:IWineD3DImpl_FillGLCaps OpenGL implementation supports 16 vertex
samplers and 16 total samplers
fixme:d3d:IWineD3DImpl_FillGLCaps Expected vertex samplers + MAX_TEXTURES(=8) >
combined_samplers
fixme:win:EnumDisplayDevicesW ((null),0,0x32cfa8,0x00000000), stub!
--
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=25595
Summary: Source engine games don't even launch
Product: Wine
Version: 1.3.9
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: JimiJames.Bove(a)gmail.com
If I launch any game that uses hl2.exe, the launching window will finish and
close, the process will pop up in the process monitor for a few seconds, and
then just go away. The game never launches. I don't know if I have to specify
any debug mode, but simply running it in the terminal provides zero output
during the launching of the game.
This has been going on since 1.3.6 or 1.3.7, though it wasn't those updates
that caused it. Nothing at all on my computer, in fact, was updated when this
problem popped up, and updates for both WINE and Steam haven't fixed it, nor
has running winepulse or killing PulseAudio before launching WINE. It also
isn't fixed by every step that Valve and the Wine AppDB offer for fixing
issues, including -nointro, -dxlevel81, and disabling Steam Community In-Game.
It isn't fixed by a virtual desktop or a different Windows version setting.
That's all I've tried so far.
I'm on Ubuntu 10.04 x64, kernel version 2.6.32.22.23 and I miss playing GMod
and TF2 :(
--
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=36227
Bug ID: 36227
Summary: Salammbo: invisible mouse pointer in the menus
Product: Wine
Version: 1.7.11
Hardware: x86
URL: http://www.4players.de/4players.php/download_info/Down
loads/Download/4597/Salammbo/Demo__1.html
OS: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Regression SHA1: adf0ab2ad889c7c6bcda484edfde9a431f829b08
Created attachment 48367
--> http://bugs.winehq.org/attachment.cgi?id=48367
terminal output
The game's custom mouse pointer doesn't show up in the menus, it is invisible.
A regression from 1.7.11:
adf0ab2ad889c7c6bcda484edfde9a431f829b08 is the first bad commit
commit adf0ab2ad889c7c6bcda484edfde9a431f829b08
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Tue Jan 14 13:59:23 2014 +0100
wined3d: Give the DIB section its own location.
:040000 040000 d47e627aba900e5bf8efc446554f5ca33af06ddf
bc1f482e29904fcd5994b94e6ff63500c8f4404c M dlls
Fedora 20
Nvidia binary drivers 337.12
X.Org X Server 1.14.4
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34659
Bug #: 34659
Summary: Cannot move mouse in main menu in Bioshock 2
multiplayer
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: descent1(a)gmx.net
Classification: Unclassified
Created attachment 46196
--> http://bugs.winehq.org/attachment.cgi?id=46196
Console output
Note: This is about the new Bioshock 2 version on Steam (1.5.0.019) which has
GFWL and SecuROM officially removed - no cracks have been used!
When trying to run Bioshock 2 multiplayer, the game opens and shows the main
menu. The mouse cursor is positioned in the center of the screen and cannot be
moved.
I tried the following things:
-Upgrading wine from stable to the newest dev version (1.7.3)
-Tried the winecfg option to catch the mouse in fullscreen games
-Emulated desktop function in winecfg
-Overriding dinput8 to 'builtin'
Console output is attached.
This has been tested with wine 1.5.12, 1.6 and 1.7.3.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36228
Bug ID: 36228
Summary: Lotus Notes 8.x installer aborts with SAX parser
exception (XSL pattern syntax error)
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says ...
--- snip ---
$ WINEDEBUG=+tid,+seh,+loaddll,+process,+msxml,+msgbox wine ./C1K31EN.exe
>>log.txt 2>&1
...
0029:trace:msxml:xmlnodemap_getNamedItem (0x434c48)->(L"mergeaction" 0x9a0e380)
0029:trace:msxml:domelem_get_named_item (0xf72dbec8)->(L"mergeaction"
0x9a0e380)
0029:trace:msxml:domelem_get_qualified_item (0xf72dbec8)->(L"mergeaction"
(null) 0x9a0e380)
0029:trace:msxml:xmlnodemap_Release (0x434c48)->(0)
0029:trace:msxml:xmldoc_release_refs (0xf7205a20)->(37)
0029:trace:msxml:domelem_selectNodes (0x169da0)->(L"requirements/feature[@*]"
0x9a0e3e4)
0029:trace:msxml:create_selection (0xf72dbec8, "requirements/feature[@*]",
0x9a0e3e4)
0029:trace:msxml:xmldoc_add_refs (0xf7205a20)->(38)
0029:trace:msxml:registerNamespaces (0xf7208098)
0029:trace:msxml:XSLPattern_to_XPath ("requirements/feature[@*]")
0029:trace:msxml:xslpattern_lex token: TOK_NCName : requirements
0029:trace:msxml:xslpattern_lex token: TOK_FSlash : /
0029:trace:msxml:xslpattern_parse Got UnprefixedName: "requirements"
0029:trace:msxml:xslpattern_lex token: TOK_NCName : feature
0029:trace:msxml:xslpattern_lex token: '[' : [
0029:trace:msxml:xslpattern_parse Got UnprefixedName: "feature"
0029:trace:msxml:xslpattern_lex token: '@' : @
0029:trace:msxml:xslpattern_lex token: '*' : *
0029:fixme:msxml:xslpattern_error syntax error:
param {
yyscanner=0xf72036e8
ctx=0xf7208098
in="requirements/feature[@*]"
pos=24
len=24
out="(null)"
err=1
}
scanner=0xf72036e8
0029:trace:msxml:XSLPattern_to_XPath => (null)
...
org.xml.sax.SAXParseException: Attribute name "ur" associated with an
element type "feature" must be followed by the ' = ' character.
at
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
Source)
at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanAttribute(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)
at
com.ibm.rcp.provisioning.internal.impl.ProvisioningServiceImpl$3.run(Unknown
Source)
at org.eclipse.core.internal.jobs.Worker.run(Unknown Source)
004c:trace:msgbox:MSGBOX_OnInit L"CWPPR0025E: An unexpected error occurred
while processing the provisioning manifest.\n\nUnexpected results have occurred
during the provisioning operation\t\r\nFor additional information, please refer
to the logs:\t\t\r\nC:\\Program
Files\\IBM\\Lotus\\Notes\\Data\\\\workspace\\logs"
--- snip ---
'winetricks -q msxml3' works around.
$ sha1sum C1K31EN.exe
5aac0feb578c471e65c0a24a3f5dceb719fd5760 C1K31EN.exe
$ du -sh C1K31EN.exe
456M C1K31EN.exe
$ wine --version
wine-1.7.17-175-gc1bf61e
Regards
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36277
Bug ID: 36277
Summary: valgrind shows a leak in fusion/tests/asm.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: fusion
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==27712== 2 bytes in 1 blocks are definitely lost in loss record 7 of 482
==27712== at 0x7BC4C735: notify_alloc (heap.c:255)
==27712== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==27712== by 0x6155B18: strdupW (fusionpriv.h:451)
==27712== by 0x61571C6: parse_culture (asmname.c:537)
==27712== by 0x61576E9: parse_display_name (asmname.c:690)
==27712== by 0x6157941: CreateAssemblyNameObject (asmname.c:743)
==27712== by 0x6152D32: IAssemblyCacheImpl_QueryAssemblyInfo
(asmcache.c:316)
==27712== by 0x49592E4: test_QueryAssemblyInfo (fusion.h:257)
==27712== by 0x495A692: func_asmcache (asmcache.c:1557)
==27712== by 0x496544C: run_test (test.h:584)
==27712== by 0x496583B: main (test.h:654)
==27712==
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36125
Bug ID: 36125
Summary: valgrind shows a leak in oleaut32/tests/olefont.c
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: oleaut32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
../../../tools/runtest -q -P wine -T ../../.. -M oleaut32.dll -p
oleaut32_test.exe.so olefont && touch olefont.ok
preloader: Warning: failed to reserve range 00110000-68000000
preloader: Warning: failed to reserve range 7f000000-82000000
err:ole:OLEFontImpl_Invoke riid was {bef6e003-a874-101a-8bba-00aa00300cab}
instead of IID_NULL
err:ole:OLEFontImpl_Invoke param count for DISPATCH_PROPERTYPUT was 0 instead
of 1
err:ole:OLEFontImpl_Invoke null pDispParams not allowed when
DISPATCH_PROPERTYPUT specified
err:ole:OLEFontImpl_Invoke null pVarResult not allowed when
DISPATCH_PROPERTYGET specified
err:ole:OLEFontImpl_Invoke one of DISPATCH_PROPERTYGET or DISPATCH_PROPERTYPUT
must be specified
err:ole:OLEFontImpl_Invoke member not found for dispid 0xdeadbeef
==23993== 16 bytes in 1 blocks are definitely lost in loss record 98 of 609
==23993== at 0x7BC4C735: notify_alloc (heap.c:255)
==23993== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==23993== by 0x4F980FA: alloc_bstr (oleaut.c:162)
==23993== by 0x4F98490: SysAllocStringLen (oleaut.c:324)
==23993== by 0x4F981A7: SysAllocString (oleaut.c:232)
==23993== by 0x4C165FE: FontEventsDisp_Invoke (olefont.c:332)
==23993== by 0x4F99EB5: OLEFont_SendNotify (ocidl.h:997)
==23993== by 0x4F9AD70: OLEFontImpl_put_Bold (olefont.c:781)
==23993== by 0x4C168E2: test_font_events_disp (ocidl.h:528)
==23993== by 0x4C1B051: func_olefont (olefont.c:1279)
==23993== by 0x4D35F00: run_test (test.h:584)
==23993== by 0x4D362EF: main (test.h:654)
==23993==
--
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=36144
Bug ID: 36144
Summary: Airport Tycoon 2 demo needs
msvcp70.dll.??0?$basic_fstream@DU?$char_traits@D@std@@
@std@@QAE@PBDH@Z
Product: Wine
Version: 1.7.17
Hardware: x86
URL: http://www.fileplanet.com/121813/120000/fileinfo/Airpo
rt-Tycoon-2-Demo
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Created attachment 48303
--> http://bugs.winehq.org/attachment.cgi?id=48303
terminal output
The game crashes during the initial loading screen due to an unimplemented
function in Wine's msvcp70.dll.
mscodescan output:
Found 4 bundled MS modules:
./MSVCR70.DLL
./msvcp70.dll
./msvci70.dll
./mfc70.dll
./Airport Tycoon II Demo.exe imports following stub symbols:
msvcp70:??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z
wine-1.7.17-92-ge2bf516
--
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=27992
Summary: Pazera Free Audio Extractor - Shift problem
Product: Wine
Version: 1.3.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: computergeoffrey(a)gmail.com
When selecting files in Pazera Free Audio Extractor, you have to use control
because shift doesn't work. (freeze when you use shift)
--
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=26487
Summary: Game menu items installed by steam don't work
Product: Wine
Version: 1.3.16
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This is a followon to bug 23378.
If you install a game with steam, an item is installed into
the system menus under Wine / Steam / gamename... but it
doesn't work, because winebrowser isn't set to handle steam urls.
(And as reported at
http://appdb.winehq.org/commentview.php?iAppId=1163&iVersionId=19444&iThrea…
replacing winebrowser
in the items with a windows browser probably works around the problem.)
--
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=17004
Summary: C&C Red Alert 3: black screen when Shadow Quality > Low
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
When the Shadow Quality in C&C Red Alert 3 is set to greater than Low, the game
only shows a black screen after loading a map. There is a demo of this game,
I'll download it and see if it has the same problem.
--
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=27963
Summary: Anomaly: Warzone Earth crashes on start
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: benoit.pierre(a)gmail.com
Created an attachment (id=35789)
--> (http://bugs.winehq.org/attachment.cgi?id=35789)
Add RegisterTouchWindow stub to user32.dll
The game crashes on start due to a call to unimplemented RegisterTouchWindow in
USER32.dll:
wine: Call from 0x7bc4b220 to unimplemented function
USER32.dll.RegisterTouchWindow, aborting
wine: Unimplemented function USER32.dll.RegisterTouchWindow called at address
0x7bc4b220 (thread 0055), starting debugger...
Unhandled exception: unimplemented function USER32.dll.RegisterTouchWindow
called in 32-bit code (0x7bc4b220).
The attached patch add a stub to user32.dll and fixes the problem for me: game
starts 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=27993
Summary: Pazera Free Audio Extractor - Directory problem
Product: Wine
Version: 1.3.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: computergeoffrey(a)gmail.com
Pazera Free Audio Extractor can't make a new directory. This is when you select
files to convert and you click on 'convert'; it seems to do nothing and a black
window appears. When you close that window, you get an error that says pazera
isn't able to create a new, non-existent folder.
--
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=29906
Bug #: 29906
Summary: wine build broken on clang from trunk
Product: Wine
Version: 1.4-rc3
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
make[1]: Entering directory `/home/austin/src/wine-clang/dlls/oleaut32/tests'
clang -c -I. -I. -I../../../include -I../../../include
-DWINE_STRICT_PROTOTYPES -DWINE_NO_NAMELESS_EXTENSION -D_REENTRANT -fPIC -Wall
-pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body
-Wignored-qualifiers -Wstrict-prototypes -Wtype-limits
-Wunused-but-set-parameter -Wwrite-strings -fno-omit-frame-pointer
-Wpointer-arith -I/usr/include/freetype2 -g -O2 -o tmarshal.o tmarshal.c
In file included from tmarshal.c:29:
./tmarshal.h:611:41: error: expected member name or ';' after declaration
specifiers
HRESULT (STDMETHODCALLTYPE *restrict)(
~~~~~~~ ^
./tmarshal.h:611:32: error: pointer to function type 'HRESULT (IWidget *, INT
*) __attribute__((stdcall))' may not be 'restrict' qualified
HRESULT (STDMETHODCALLTYPE *restrict)(
^
2 errors generated.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36119
Bug ID: 36119
Summary: valgrind shows leaks in ntdll/file.c
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==20233== 82 bytes in 1 blocks are definitely lost in loss record 131 of 257
==20233== at 0x7BC4C735: notify_alloc (heap.c:255)
==20233== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==20233== by 0x7BC65230: RtlDosPathNameToNtPathName_U (path.c:394)
==20233== by 0x4965504: test_NtCreateFile (file.c:1926)
==20233== by 0x496BA62: func_file (file.c:2720)
==20233== by 0x49A151C: run_test (test.h:584)
==20233== by 0x49A190B: main (test.h:654)
==20233==
==20233== 116 bytes in 1 blocks are definitely lost in loss record 158 of 257
==20233== at 0x7BC4C735: notify_alloc (heap.c:255)
==20233== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==20233== by 0x7BC65230: RtlDosPathNameToNtPathName_U (path.c:394)
==20233== by 0x495A8A5: create_file_test (file.c:271)
==20233== by 0x496BA67: func_file (file.c:2721)
==20233== by 0x49A151C: run_test (test.h:584)
==20233== by 0x49A190B: main (test.h:654)
==20233==
==20233== 122 bytes in 1 blocks are definitely lost in loss record 161 of 257
==20233== at 0x7BC4C735: notify_alloc (heap.c:255)
==20233== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==20233== by 0x7BC65230: RtlDosPathNameToNtPathName_U (path.c:394)
==20233== by 0x495A6FF: create_file_test (file.c:257)
==20233== by 0x496BA67: func_file (file.c:2721)
==20233== by 0x49A151C: run_test (test.h:584)
==20233== by 0x49A190B: main (test.h:654)
==20233==
(found with ntdll/tests/file.c
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36358
Bug ID: 36358
Summary: valgrind shows some uninitialized memory used in
dplayx/tests/dplayx.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: directx-dplay
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: leslie_alistair(a)hotmail.com
==13587== Conditional jump or move depends on uninitialised value(s)
==13587== at 0x4AD24BA: dplobby_destroy (dplobby.c:114)
==13587== by 0x4AD26BE: IDirectPlayLobby3Impl_Release (dplobby.c:360)
==13587== by 0x4AD4281: dplobby_create (dplobby.c:2059)
==13587== by 0x4ABBA8E: IClassFactoryImpl_CreateInstance
(dpclassfactory.c:87)
==13587== by 0x58434DD: CoCreateInstance (unknwn.h:226)
==13587== by 0x4A7BBF4: func_dplayx (dplayx.c:6469)
==13587== by 0x4A7EC94: run_test (test.h:584)
==13587== by 0x4A7F082: main (test.h:654)
==13587== Uninitialised value was created by a client request
==13587== at 0x7BC50B1E: RtlAllocateHeap (heap.c:209)
==13587== by 0x4AD41BD: dplobby_create (dplobby.c:2036)
==13587== by 0x4ABBA8E: IClassFactoryImpl_CreateInstance
(dpclassfactory.c:87)
==13587== by 0x58434DD: CoCreateInstance (unknwn.h:226)
==13587== by 0x4A7BBF4: func_dplayx (dplayx.c:6469)
==13587== by 0x4A7EC94: run_test (test.h:584)
==13587== by 0x4A7F082: main (test.h:654)
==13587==
==13587== Conditional jump or move depends on uninitialised value(s)
==13587== at 0x4AD24BA: dplobby_destroy (dplobby.c:114)
==13587== by 0x4AD3366: IDirectPlayLobbyImpl_Release (dplobby.c:308)
==13587== by 0x4A7C139: func_dplayx (dplayx.c:6524)
==13587== by 0x4A7EC94: run_test (test.h:584)
==13587== by 0x4A7F082: main (test.h:654)
==13587== Uninitialised value was created by a client request
==13587== at 0x7BC50B1E: RtlAllocateHeap (heap.c:209)
==13587== by 0x4AD41BD: dplobby_create (dplobby.c:2036)
==13587== by 0x4ABBA8E: IClassFactoryImpl_CreateInstance
(dpclassfactory.c:87)
==13587== by 0x58434DD: CoCreateInstance (unknwn.h:226)
==13587== by 0x4A7BC66: func_dplayx (dplayx.c:6474)
==13587== by 0x4A7EC94: run_test (test.h:584)
==13587== by 0x4A7F082: main (test.h:654)
==13587==
--
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=30450
Bug #: 30450
Summary: Restarting a mission in Urban Chaos causes a crash
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: curran.michaelp(a)gmail.com
Classification: Unclassified
Created attachment 39808
--> http://bugs.winehq.org/attachment.cgi?id=39808
Crash log for Urban Chaos
During a mission or after a failed mission, if you attempt to immediately
restart the mission via the menu, the program crashes. You can still abort and
restart from the main menu normally. Log 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=25245
Summary: Gears of War installs but won't start
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shannon.vanwagner(a)gmail.com
Created an attachment (id=32051)
--> (http://bugs.winehq.org/attachment.cgi?id=32051)
winedebug module log of Startup.exe
Microsoft Gears of War installs but doesn't 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=16503
Summary: Gears of War pagefaults
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: liquitsnake(a)gmx.net
Created an attachment (id=17931)
--> (http://bugs.winehq.org/attachment.cgi?id=17931)
log
Gears of War 1.0 with crack pagefaults. See log. Without crack it cries about
it's mommy...err disk
--
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=35177
Bug ID: 35177
Summary: Error Output From Game Screen
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fred.thomas-6oi1k1ay(a)yopmail.com
Classification: Unclassified
Created attachment 46925
--> http://bugs.winehq.org/attachment.cgi?id=46925
Error Output
Can someone tell me what this error output means, and how can I fix it?
[see attached]
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34448
Bug #: 34448
Summary: League Of Legends : crash before game start since last
patch
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: loic.gammaitoni(a)gmail.com
Classification: Unclassified
Created attachment 45860
--> http://bugs.winehq.org/attachment.cgi?id=45860
the details of the errors as generated by wine.
Since last patch (3.11) starting a game (of any type) will cause the program to
crash after the champion selection countdown.
Restarting the game and attempting to reconnect will also result in a crash.
The game was running perfectly before their last update.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36409
Bug ID: 36409
Summary: valgrind shows a couple leaks in
netcfgx/tests/netcfgx.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==3762== 12 bytes in 1 blocks are definitely lost in loss record 68 of 562
==3762== at 0x7BC50A9B: RtlAllocateHeap (heap.c:255)
==3762== by 0x5DC1DC2: INetCfg_CreateInstance (netcfg.c:228)
==3762== by 0x5DC0C61: netcfgcf_CreateInstance (main.c:94)
==3762== by 0x4CBD4DD: CoCreateInstance (unknwn.h:226)
==3762== by 0x4B54DA2: func_netcfgx (netcfgx.c:36)
==3762== by 0x4B55F6C: run_test (test.h:584)
==3762== by 0x4B5635A: main (test.h:654)
==3762== 28 bytes in 1 blocks are possibly lost in loss record 162 of 562
==3762== at 0x7BC50A9B: RtlAllocateHeap (heap.c:255)
==3762== by 0x4CB6BB8: apartment_getclassobject (compobj.c:526)
==3762== by 0x4CB9FC6: get_inproc_class_object (compobj.c:2894)
==3762== by 0x4CBCD2F: CoGetClassObject (compobj.c:3032)
==3762== by 0x4CBD4B7: CoCreateInstance (compobj.c:3197)
==3762== by 0x4B54DA2: func_netcfgx (netcfgx.c:36)
==3762== by 0x4B55F6C: run_test (test.h:584)
==3762== by 0x4B5635A: main (test.h:654)
==3762==
--
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=36067
Bug ID: 36067
Summary: Fallout 3: semi-random crashes
Product: Wine
Version: 1.7.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: darwell.j(a)gmail.com
Created attachment 48250
--> http://bugs.winehq.org/attachment.cgi?id=48250
Backtrace from clicking the Continue button while at Arefu house
Hello everybody,
I was really surprised how well Fallout 3 GOTY works on Wine! However sometimes
it crashes randomly and other times I know it crashes on certain places.
Crashes that I managed to play around:
* Crash while leaving a house in Greyditch. Running game again and clicking
Continue would crash the game once more. Clicking Load and choosing older save
and then loading the latest save worked as a workaround, I was able to leave
the house.
* Random crashes when traveling, Continue worked without any hassle.
Crashes I haven't been able to play around:
* Supermutant encounter when leaving Big Town. I can kill the first Supermutant
but as soon as Supermutant Brute points his Minigun at me, game crashes
everytime. Loading different older savegames and trying to play it again didn't
help, had to take another route.
* Leaving a house in Arefu. Crashes everytime no matter how I try to play it
through.
--
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=23988
Summary: Alt + Tab woes on Ubuntu and Debian.
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vixsandlee(a)gmail.com
Created an attachment (id=30126)
--> (http://bugs.winehq.org/attachment.cgi?id=30126)
wine regression testing result.
I have tested this on both Ubuntu 9.10 and Debian (testing) both running
gnome-shell (one build from git, the other from apt) and I find that once I hit
a version of wine, I can no longer alt - tab back into wine, if I alt + tab
out.
I have tried to do the Regression testing to find the problem, and I believe I
have done it right, and come up with this result. (see attached)
This effects programs rin using wine, and winecfg ect...
Anyway, I hope this helps and that I have done it correctly.
S.
--
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=19427
Summary: Generic failure of Radio Manager
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://download.radionomy.com/rm1319en.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yurienu.amenysta(a)gmail.com
Hi,
When I launch RadioManager.exe, an error message said « Generic failure ».
Thanks 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=34371
Bug #: 34371
Summary: Batman: Arkham City launcher needs native dotnet20
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 45752
--> http://bugs.winehq.org/attachment.cgi?id=45752
log
Last one string
err:mscoree:expect_no_runtimes Process exited with a Mono runtime loaded.
--
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=17798
Summary: Deus Ex: Invisible War crashed upon loading the main
menu.
Product: Wine
Version: 1.1.16
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: holy.smoking.floorboards.batman(a)gmail.com
Basically, I've tried running Deus Ex 2 for some time now in the last few
releases of Wine. The game installs just fine and when I start it up the intro
videos play just fine (including sound) but when the main menu loads, the game
crashes. What is supposed to happen is that the main menu buttons are supposed
to 'swirl' around a central logo. Instead, the buttons will start 'swirling',
but then stop after a brief moment (so they only go partway) and the music will
play the first second, or so, and then repeat the next 2 seconds.
In the console, I get this error output repeatedly:
'fixme:d3d:state_wrap (WINED3DRS_WRAP0) Texture wraping not yet supported'
I have tried updating the game, using a nocd hack and disabling sound, but
nothing works. I've noticed that if I change the virtual machine from Windows
XP (which is my default) to Windows 98, the game wont even detect the CD being
in the drive.
--
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=24901
Summary: Sky Track: Crashes unexpectedly
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=31535)
--> (http://bugs.winehq.org/attachment.cgi?id=31535)
Terminal output on Wine-1.3.5
Steps to reproduce:
1) remove ~/.wine
2) install Sky Track (16MB)
3) wine Game.exe
4) create your own profile, do whatever you want
Behaviour:
crash
Expected behaviour:
no crash
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32784
Bug #: 32784
Summary: Open Morrowind fails to start without native d3dx9
Product: Wine
Version: 1.5.22
Platform: x86
URL: https://openmw.org/en/
OS/Version: Linux
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
fixme:d3dx:D3DXCreateTextureFromFileInMemoryEx Generation of mipmaps for
compressed pixel formats is not implemented yet
fixme:d3dx:D3DXLoadSurfaceFromMemory Format conversion missing 0x33545844 ->
0x1c
I see those functions listed in a few other bugs, but not those particular
fixme's.
[austin@localhost ~]$ sha1sum OpenMW-0.19.0-win32.exe
5a04a5a06fa1e923ec0d92f2e46b93ea0e9d4a8d OpenMW-0.19.0-win32.exe
[austin@localhost ~]$ wine --version
wine-1.5.22-36-g99c1b55
note that you'll need the original morrowind game to reproduce the problem.
--
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=31362
Bug #: 31362
Summary: GTA 4 dd3d20 error
Product: Wine
Version: 1.5.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martin_partridge(a)btconnect.com
Classification: Unclassified
Created attachment 41206
--> http://bugs.winehq.org/attachment.cgi?id=41206
This is the program error details
When loading the Steam version of GTA 4 I get a DD3D20 error, the error
description is 'reinstall the game and/or DirectX', I have followed these steps
to bypass the DirectX files in Wine and reinstalled Wine and the game but with
no luck. I have also attempted fixes listed on various forums and still the
game spews out the same error. I am running 32-bit Fedora 17 and i'm stuck, the
program error details are 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=17083
Summary: background artefacts (Counter-Strike: Source)
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: segnimod(a)ya.ru
CC: segnimod(a)ya.ru
Created an attachment (id=18909)
--> (http://bugs.winehq.org/attachment.cgi?id=18909)
white background
wine 1.1.11, 1.1.12, 1.1.13 and wine-1.1.13-228-ga44ff54;
CS:S build «14:37:14 Jul 8 2008 (3531)»;
Distribution: Debian GNU/Linux "lenny" x86;
hardware: AMD Athlon 3500+ (2.21 GHz), 1 Gb DDR1 RAM, Sapphire Radeon x1600Pro
(256 Mb GDDR3);
video driver: AMD Catalyst 8.12
background artefacts (see images in attachment)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36294
Bug ID: 36294
Summary: valgrind shows some uninitialized memory in
msvcp60/tests/string.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Created attachment 48395
--> https://bugs.winehq.org/attachment.cgi?id=48395
valgrind log
==30546== Conditional jump or move depends on uninitialised value(s)
==30546== at 0x5060ED4: basic_string_char__Tidy (string.c:167)
==30546== by 0x5062040: basic_string_char_ctor (string.c:514)
==30546== by 0x495B7B4: test_basic_string_char (string.c:307)
==30546== by 0x495EA2B: func_string (string.c:694)
==30546== by 0x495F872: run_test (test.h:584)
==30546== by 0x495FC6F: main (test.h:654)
==30546== Uninitialised value was created by a stack allocation
==30546== at 0x495B792: test_basic_string_char (string.c:302)
==30546==
etc.
--
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=21239
Summary: Left 4 Dead 2 crashes trying to join a multiplayer
game
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://store.steampowered.com/app/550/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris(a)boyle.name
Created an attachment (id=25524)
--> (http://bugs.winehq.org/attachment.cgi?id=25524)
Failure to join a dedicated server
On wine 1.1.35 (built from git at tags/wine-1.1.35) I can play single-player
games of L4D2 quite happily, but if I try to join a multiplayer game, whether
I've searched for it or created it, I see the "movie poster" screen with the
progress bar, and immediately after the progress bar fills up the process exits
abruptly. I will attach output of this happening and of a single player game
working.
If I try instead to create a locally-hosted game (instead of dedicated) I get a
hang instead of an exit, at the same point (end of progress bar). I will attach
the output of this as well.
The command in all cases was:
env WINEPREFIX="/home/foo/.wine" wine "C:\Program Files\Valve\Steam\steam.exe"
-applaunch 550
I have tried git 9dc584d0a2cae7cfb4816fe982071d264d2345ff Thu Dec 31 12:03:01
2009 +0000 with the same result.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36120
Bug ID: 36120
Summary: valgrind shows a leak in d3d9/vertextdeclaration test
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==21434== 16 bytes in 1 blocks are definitely lost in loss record 157 of 808
==21434== at 0x7BC4C735: notify_alloc (heap.c:255)
==21434== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==21434== by 0x497BF2A: Direct3DCreate9 (d3d9_main.c:42)
==21434== by 0x4C4EB9E: init_d3d9 (vertexdeclaration.c:46)
==21434== by 0x4C51758: func_vertexdeclaration (vertexdeclaration.c:842)
==21434== by 0x4CAE458: run_test (test.h:584)
==21434== by 0x4CAE847: main (test.h:654)
==21434==
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36307
Bug ID: 36307
Summary: valgrind shows a possible leak in
netcfg/tests/netcfgx.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==30950== 12 bytes in 1 blocks are definitely lost in loss record 68 of 557
==30950== at 0x7BC4C735: notify_alloc (heap.c:255)
==30950== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==30950== by 0x5D2EDA5: INetCfg_CreateInstance (netcfg.c:228)
==30950== by 0x5D2DF20: netcfgcf_CreateInstance (main.c:94)
==30950== by 0x4ABEE26: CoCreateInstance (unknwn.h:226)
==30950== by 0x4954D76: create_configuration (netcfgx.c:36)
==30950== by 0x49552B8: func_netcfgx (netcfgx.c:90)
==30950== by 0x49560B4: run_test (test.h:584)
==30950== by 0x49564A2: main (test.h:654)
==30950==
--
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=25036
Summary: dawn of war 2 starts to load gives no error and stops
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: r_carran(a)yahoo.co.nz
Hello,
tried getting dawn of war 2 going it had some problems with setupapi.dll and
cfgmgr32.dll so downloaded the native files, and overode them in winecfg.
that was to run the auxiliary_installer in the directory Install in the dawn of
war 2 directory.
It also has msasn1.dll and xlive.dll overridden as native it also has net 2.0
windows live and vc++ 2005 and 2008.
On top of whats needed to install steam
on wine 1.3.6
This is the output from the game when running the dow2.exe from terminal
without steam on in attachment. It loads steam, then tries to execute dow2 then
it falls back too steam with no 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=32511
Bug #: 32511
Summary: Bioshock2.exe cannot be launched directly, please
launch using Bioshock2Launcher.exe
Product: Wine
Version: 1.5.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: systemofdown(a)gmail.com
Classification: Unclassified
Created attachment 42889
--> http://bugs.winehq.org/attachment.cgi?id=42889
full output console
Bioshock2 fails to execute the launcher due to the follow error:
"Bioshock2.exe cannot be launched directly, please launch using
Bioshock2Launcher.exe"
wine Bioshock2Launcher.exe or launching it from steam will result in the same
error above
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36293
Bug ID: 36293
Summary: valgrind shows some unitialized memory in
msvcp60/tests/ios.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Created attachment 48394
--> https://bugs.winehq.org/attachment.cgi?id=48394
valgrind log
==30538== Conditional jump or move depends on uninitialised value(s)
==30538== at 0x4FF0ED4: basic_string_char__Tidy (string.c:167)
==30538== by 0x4FF1DE3: basic_string_char_ctor_cstr_alloc (string.c:470)
==30538== by 0x4966735: test_num_get_get_double (ios.c:875)
==30538== by 0x496AAEB: func_ios (ios.c:1644)
==30538== by 0x496F872: run_test (test.h:584)
==30538== by 0x496FC6F: main (test.h:654)
==30538== Uninitialised value was created by a stack allocation
==30538== at 0x49661A1: test_num_get_get_double (ios.c:815)
==30538==
==30538== Conditional jump or move depends on uninitialised value(s)
==30538== at 0x4FF0ED4: basic_string_char__Tidy (string.c:167)
==30538== by 0x4FF1DE3: basic_string_char_ctor_cstr_alloc (string.c:470)
==30538== by 0x4FF1E31: basic_string_char_ctor_cstr (string.c:478)
==30538== by 0x4FD7AEF: _Locinfo__Locinfo_ctor_cat_cstr (locale.c:386)
==30538== by 0x4FD7BF3: _Locinfo_ctor_cstr (locale.c:416)
==30538== by 0x4FDAB5D: ctype_char__Getcat (locale.c:1452)
==30538== by 0x4FDAC39: ctype_char_use_facet (locale.c:1479)
==30538== by 0x4FC7892: basic_istream_char(intXX_t, long long) (ios.c:6807)
==30538== by 0x4FC7942: basic_istream_char_ipfx (ios.c:6831)
==30538== by 0x4FC7A12: basic_istream_char_sentry_create (ios.c:6849)
==30538== by 0x4FC98BC: basic_istream_char_read_double (ios.c:7528)
==30538== by 0x4966836: test_num_get_get_double (ios.c:884)
==30538== by 0x496AAEB: func_ios (ios.c:1644)
==30538== by 0x496F872: run_test (test.h:584)
==30538== by 0x496FC6F: main (test.h:654)
==30538== Uninitialised value was created by a stack allocation
==30538== at 0x4FDAA40: ctype_char__Getcat (locale.c:1439)
==30538==
and lots more
and lots
--
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=36140
Bug ID: 36140
Summary: Dungeons & Dragons Online crashes upon login
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ostdan(a)yahoo.com
Immediately upon selecting a 'world' to connect to and clicking the connect
button, the error occurs.
--
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=36178
Bug ID: 36178
Summary: HearthStone fails to start (Failed to load asset
PlayErrors32)
Product: Wine
Version: 1.7.17
Hardware: x86-64
URL: http://us.battle.net/hearthstone/en/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: frederic.delanoy(a)gmail.com
Created attachment 48314
--> http://bugs.winehq.org/attachment.cgi?id=48314
Terminal log wine-1.7.17
When trying to launch HearthStone: Heroes of Warcraft from battle.net app, I
only get a splash screen with "Failed to load asset PlayErrors32."
Using msvcp100 override (native, builtin) works around the issue, so it's
likely related to the "fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f098 1
C) semi-stub" lines from the log.
--
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=36204
Bug ID: 36204
Summary: TrySim v5.0 demo has problem displaying the help
window
Product: Wine
Version: 1.7.14
Hardware: x86
URL: http://www.trysim.de/de/downloads/tsdemogl.zip
OS: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: hhctrl.ocx
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: erich.e.hoover(a)gmail.com
Regression SHA1: ee484b3140ee7637f297ed8ed4af86dd1e626416
Created attachment 48326
--> http://bugs.winehq.org/attachment.cgi?id=48326
terminal output
When you open the help window in the application (press F1, or 'Hilfe -> Index'
from the menus) there is an exception error in hhctrl.ocx. If you click on
Index in the help window, the contents of the index are not displayed.
This is after
ee484b3140ee7637f297ed8ed4af86dd1e626416 is the first bad commit
commit ee484b3140ee7637f297ed8ed4af86dd1e626416
Author: Erich E. Hoover <erich.e.hoover(a)gmail.com>
Date: Tue Feb 25 19:20:31 2014 -0700
hhctrl.ocx: Permit HTML start/end tags within quoted attributes.
:040000 040000 05550bf00fc5c5a1af8e3149c38e7b00a5a6174a
e06e633b924d24e8b40ccaa986a03334d7c8d6d8 M dlls
'winetricks ie7' is a workaround. There's a crash in the attached log, but it
is unrelated, occuring when you close the application.
wine-1.7.17-148-g2e5cb7a
TrySimSetup.exe
md5sum 42d8aca0ada4ca25fe474638027a323a
--
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=35079
Bug #: 35079
Summary: DisplayFusion does not run.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tay_will_95(a)yahoo.com
Classification: Unclassified
Created attachment 46786
--> http://bugs.winehq.org/attachment.cgi?id=46786
Backtrace
(I use Linux Mint 15 Olivia on Cinnamon, if it helps.)
--
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=20126
Summary: HuluDesktop will not run.
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maxolasersquad(a)gmail.com
Hulu Desktop 0.9.7 will install but not run.
--
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=26396
Summary: Roller Coaster Tycoon 3 has no audio without native
quartz
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Roller Coaster Tycoon 3, once you get past the obvious problem,
works with no overrides... but the buttons and rides have no
sound unless you do 'winetricks quartz'.
I'll attach a +quartz 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=28473
Summary: uTorrent 3.x hangs randomly
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: MattFinn(a)gmail.com
Created attachment 36515
--> http://bugs.winehq.org/attachment.cgi?id=36515
Short log showing the errors and the immediate context.
I tried both the uTorrent stable (3.0) and the latest 3.1 build.
For both, it runs for some time (minutes, maybe hours) and then it freezes up
(won't respond to GUI events) and starts outputting these ERR's repeatedly.
err:ntdll:RtlpWaitForCriticalSection section 0x51a648 "?" wait timed out in
thread 0020, blocked by 0021, retrying (60 sec)
--
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=33114
Bug #: 33114
Summary: Bioshock crashes on exit
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael(a)araneidae.co.uk
Classification: Unclassified
Created attachment 43786
--> http://bugs.winehq.org/attachment.cgi?id=43786
Backtrace from bioshock crash on exit.
Bioshock crashes on exit, backtrace attached. This is the Steam version of the
game, and is the first Bioshock game.
The graphics card is a GeForce GTX 660 with nVidia driver 310.14 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=32595
Bug #: 32595
Summary: Guild Wars 2: mini map is rendered incorrectly
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: oded(a)geek.co.il
Classification: Unclassified
Created attachment 43013
--> http://bugs.winehq.org/attachment.cgi?id=43013
a screenshot showing the problem
Running Guild Wars 2 on Intel GPU (GMA 4000HD), the mini map in guild wars is
transparent until hovering the mouse over it. See the screenshot.
On a different machine with NVidia GPU, it works correctly.
I've tried 1.5.20 (latest) as well as 1.5.12 with the guildwars2 patch from bug
27168 comment 41, and they both behave the same.
Please let me know if there are any diagnostics I can run on my system to help
with solving this problem.
--
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=32472
Bug #: 32472
Summary: Running Sonic CD Crashes with invalid parameters
received.
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: scanpants200(a)hotmail.com
Classification: Unclassified
So I run Sonic CD on Steam and I get "invalid parameters received" thus forcing
me to hard close Sonic CD.
--
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=27976
Summary: Software Astronav Crash
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: amfem(a)hotmail.com
Created an attachment (id=35805)
--> (http://bugs.winehq.org/attachment.cgi?id=35805)
Astronav Error
Software Astronav - version 1.1.6 from www.navsoft.com
When i ask for "Almanac" from "Screen" menu the program stops and go down.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=4264
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #16 from Alexandre Julliard <julliard(a)winehq.org> ---
Closing bugs fixed in 1.7.19.
--
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=28439
Summary: Panzer Corps: fonts barely readable
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: slackers.mailbox(a)gmail.com
Some fonts are displayed in a dark-gray color on gray background and are
therefore barely readable. This happens in the game menu, detailed unit view
and in the purchase menu. I've uploaded some screenshots at AppDB.
--
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=28496
Summary: From Dust page fault crash after loading screen
Product: Wine
Version: 1.3.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kevinperson(a)topicbox.com
Created attachment 36557
--> http://bugs.winehq.org/attachment.cgi?id=36557
log with page fault WINEDEBUG=+tid
Much of the Ubisoft DRM has been removed in a From Dust update, allowing the
game to start in Offline Mode, sidestepping bug #28119. The game launches,
displays a logo, and then spins on a loading screen for some seconds before
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.
https://bugs.winehq.org/show_bug.cgi?id=36329
Bug ID: 36329
Summary: valgrind shows an invalid read in
sccrun/tests/filesystem.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==580== Invalid read of size 4
==580== at 0x5FB6299: get_versionstring (filesystem.c:3628)
==580== by 0x5FB64B2: filesys_GetFileVersion (filesystem.c:3664)
==580== by 0x494782D: test_GetFileVersion (scrrun.h:3945)
==580== by 0x495129F: func_filesystem (filesystem.c:1737)
==580== by 0x4952104: run_test (test.h:584)
==580== by 0x49524F3: main (test.h:654)
==580== Address 0x4716038 is 48 bytes inside a block of size 1,732 free'd
==580== at 0x7BC4C782: notify_free (heap.c:263)
==580== by 0x7BC510C7: RtlFreeHeap (heap.c:1762)
==580== by 0x5FAA46C: heap_free (scrrun_private.h:48)
==580== by 0x5FB6481: filesys_GetFileVersion (filesystem.c:3660)
==580== by 0x494782D: test_GetFileVersion (scrrun.h:3945)
==580== by 0x495129F: func_filesystem (filesystem.c:1737)
==580== by 0x4952104: run_test (test.h:584)
==580== by 0x49524F3: main (test.h:654)
==580==
==580== Invalid read of size 2
==580== at 0x5FB2FD8: create_file (filesystem.c:2724)
==580== by 0x5FB4894: filesys_GetFile (filesystem.c:3170)
==580== by 0x4948BA0: test_GetFile (scrrun.h:3905)
==580== by 0x49512B8: func_filesystem (filesystem.c:1742)
==580== by 0x4952104: run_test (test.h:584)
==580== by 0x49524F3: main (test.h:654)
==580== Address 0x472f536 is 86 bytes inside a block of size 148 free'd
==580== at 0x7BC4C782: notify_free (heap.c:263)
==580== by 0x7BC510C7: RtlFreeHeap (heap.c:1762)
==580== by 0x7BC759C8: RtlFreeUnicodeString (rtlstr.c:319)
==580== by 0x7B842077: GetFileAttributesW (file.c:2293)
==580== by 0x4948B21: test_GetFile (filesystem.c:546)
==580== by 0x49512B8: func_filesystem (filesystem.c:1742)
==580== by 0x4952104: run_test (test.h:584)
==580== by 0x49524F3: main (test.h:654)
==580==
=580== Invalid write of size 2
==580== at 0x5FB300A: create_file (filesystem.c:2725)
==580== by 0x5FB4894: filesys_GetFile (filesystem.c:3170)
==580== by 0x4948BA0: test_GetFile (scrrun.h:3905)
==580== by 0x49512B8: func_filesystem (filesystem.c:1742)
==580== by 0x4952104: run_test (test.h:584)
==580== by 0x49524F3: main (test.h:654)
==580== Address 0x472f536 is 86 bytes inside a block of size 148 free'd
==580== at 0x7BC4C782: notify_free (heap.c:263)
==580== by 0x7BC510C7: RtlFreeHeap (heap.c:1762)
==580== by 0x7BC759C8: RtlFreeUnicodeString (rtlstr.c:319)
==580== by 0x7B842077: GetFileAttributesW (file.c:2293)
==580== by 0x4948B21: test_GetFile (filesystem.c:546)
==580== by 0x49512B8: func_filesystem (filesystem.c:1742)
==580== by 0x4952104: run_test (test.h:584)
==580== by 0x49524F3: main (test.h:654)
==580==
--
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=26296
Summary: Future Pinball on wine could not load more than two or
three different table
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Future Pinball on wine could not load more than two or three different table,
perrhaps more. The third or fourth table will not load and an error message
saying: "There was a problem loading that file". When you click on that
message, another appears, and another...you have finally to kill FP.
http://img821.imageshack.us/img821/5026/tmprdtfl8.png
Thanks for your help.
--
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=36206
Bug ID: 36206
Summary: Wine Not lietening on UDP Port 9998 while running
odindiet.exe application
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: test.linux(a)religare.com
Dear All
I am facing probelm running odindiet.exe on wine .
Itis running fine on Tcp but when it comes to udp traffic the system shows the
udp packets but wine does not show any output on the UDP trafffic .
I am reciving UDP traffic on port 9998 . Also wine is listening on that .
My wine version is 1.4 and operating system is 13.10 i686 .
Plz help me ..Plzzz
--
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=15841
Summary: Counterstrike:Source crashes when joining game
Product: Wine
Version: 1.1.7
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cncxbox(a)gmail.com
Created an attachment (id=16972)
--> (http://bugs.winehq.org/attachment.cgi?id=16972)
Counterstrike Source Crash Log/Backtrace
Counterstrike crashes whenever I join a game on a server. It causes a fault
when dealing with the sound driver. The 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=34881
Bug #: 34881
Summary: 32-bit Python 3.3.2 fails to install
Product: Wine
Version: 1.4.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: list(a)qtrac.plus.com
Classification: Unclassified
I have Debian stable 7.2 64-bit and installed wine using the standard packages.
I executed this:
$ wine start python-3.3.2.msi
The dialog popped up but failed with a message of:
"Python 3.3.2 Installer ended prematurely"
I tried this with Install for everyone (Administrator) and Install just for me,
and the same thing happened both times.
I am hoping to install Python 3.3 and PySide 32-bit to do some windows
development on my Linux machine.
--
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=32177
Bug #: 32177
Summary: Can't enable multicore rendering in left 4 dead 2
Product: Wine
Version: 1.4.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kwbent(a)uab.edu
Classification: Unclassified
Hi guys, hoping this is the right place to report, move if needed.
I recently reinstalled steam inside Wine. I installed Left 4 Dead 2, and let
steam update everything to the latest version. I notice that when I try to
enable multicore rendering in the video options, it is immediately reset if I
try to go back into the options to see if is still enabled. I'm using:
Ubuntu 12.10 x64
fglrx from ubuntu repos
Wine 1.4.1
steam package version 2026
Left 4 Dead 2
AMD A10 5800K APU
4 GB DDR3 1366
1080p resolution
--
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=36458
Bug ID: 36458
Summary: wine tries to run all 16 bit programs with dosbox
Product: Wine
Version: 1.7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: farmboy0+winehq(a)googlemail.com
Regression SHA1: 4792cf31c5dac3f5216bff8f4fa700acc04ea128
No 16 bit installers I've tried work with wine anymore because wine tries to
run them using dosbox.
I have bisected the bad commit.
if I git revert the commit the installers start without dosbox but crash in
call_dialog_proc.
--
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=22999
Summary: Regression: Lord of the Rings online strange alt+tab
behavoir
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.vankaam(a)chello.nl
CC: julliard(a)winehq.org
Created an attachment (id=28496)
--> (http://bugs.winehq.org/attachment.cgi?id=28496)
lotro fullscreen after alt+tab
as of patch:
b111025c03e7e2a93bb61a6b3607e4bf8f83561 is the first bad commit
commit ab111025c03e7e2a93bb61a6b3607e4bf8f83561
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon May 24 16:54:59 2010 +0200
winex11: Don't send minimize/maximize sys commands to windows that are not
supposed to get them.
:040000 040000 3e811b56f3c8c4b8da67ecaeb12d65a2b54ecbb3
bd60e4794f9e98d7a28596891f07e976e505099a M dlls
if you alt+tab or ctlr+Fx to change desktop in LotRo the game will become a
really small image top left of the desktop, I attached a small screenshot of
that. clicking that small image will make the game full screen again but you
will have lost all keyboard and mouse input into the game. alt+tab/ctrl+Fx
will eventually give you keyboard and mouse input in the game again but I have
not figured out the exact sequence to get that always working.
I searched bugzilla on alt+tab, lord of the rings online, and the commit number
but found nothing so should not be a double.
as per instruction on the wine regression page I added the author of the patch.
this is with the KDE4 desktop in case it matters.
Alex
--
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=14690
Summary: Winamp Equalizer and playlist keeps alwais on top
Product: Wine
Version: 1.1.2
Platform: PC
URL: http://www.oldversion.com/program.php?n=winamp
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Winamp equilizer and playlist stay alwain on top of all the windows in Ubuntu
8.
04 and wine 1.1.2. Tested with Winamp 2.95.
--
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=10202
Summary: Battery visualization not working in WMP9
Product: Wine
Version: 0.9.48.
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
Created an attachment (id=8810)
--> (http://bugs.winehq.org/attachment.cgi?id=8810)
Console output
When the 'Battery' visualization type (default) is selected in Windows Media
Player 9, the visualization area is not drawn; other windows leave traces in it
etc. No visualization appears to be occuring.
The relevant errors seems to be
fixme:d3d_surface:IWineD3DBaseSurfaceImpl_SetFormat (0x1a9acb8) : The format of
the surface must be WINED3DFORMAT_UNKNOWN
--
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=12326
Summary: SHELL_FindExecutable breaks "mailto:" URL
Product: Wine
Version: 0.9.58.
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: developers(a)tefnet.pl
Created an attachment (id=11802)
--> (http://bugs.winehq.org/attachment.cgi?id=11802)
mailto test script
When you try to run attached script (mailtotest.sh) you will get an email with
only 23 lines (not 43 as supposed to be)
But when you comment out line ~560 "if (key) *key = '\0';" in
SHELL_FindExecutable (dlls/shell32/shlexec.c), you will get correct email body.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36296
Bug ID: 36296
Summary: valgrind shows a potential leak in msvcp90/tests/ios.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==4993== 12 bytes in 1 blocks are possibly lost in loss record 78 of 270
==4993== at 0x7BC4C735: notify_alloc (heap.c:255)
==4993== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==4993== by 0x5238262: MSVCRT_operator_new (heap.c:63)
==4993== by 0x5576CF7: locale_facet_register (locale.c:257)
==4993== by 0x557AE2C: ctype_char_use_facet (locale.c:1763)
==4993== by 0x5565633: basic_istream_char(intXX_t, long long) (ios.c:7728)
==4993== by 0x556570E: basic_istream_char_ipfx (ios.c:7757)
==4993== by 0x55657E9: basic_istream_char_sentry_create (ios.c:7775)
==4993== by 0x5567D9C: basic_istream_char_read_uint64 (ios.c:8606)
==4993== by 0x49571BB: test_num_get_get_uint64 (ios.c:1054)
==4993== by 0x495C89F: func_ios (ios.c:1959)
==4993== by 0x4965F3E: run_test (test.h:584)
==4993== by 0x496633B: main (test.h:654)
==4993==
==5033== 12 bytes in 1 blocks are possibly lost in loss record 89 of 270
==5033== at 0x7BC4C735: notify_alloc (heap.c:255)
==5033== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==5033== by 0x5238262: MSVCRT_operator_new (heap.c:63)
==5033== by 0x5576CF7: locale_facet_register (locale.c:257)
==5033== by 0x5582135: numpunct_short_use_facet (locale.c:4418)
==5033== by 0x558C55C: num_put_short__Iput (locale.c:8151)
==5033== by 0x558CAA9: num_put_short_do_put_ulong (locale.c:8260)
==5033== by 0x558CB7C: num_put_wchar_put_ulong (locale.c:8277)
==5033== by 0x55634B7: basic_ostream_print_ushort (ios.c:6974)
==5033== by 0x55635A0: basic_ostream_short_print_ushort (ios.c:6996)
==5033== by 0x495C795: test_ostream_print_ushort (ios.c:1943)
==5033== by 0x495C8D1: func_ios (ios.c:1969)
==5033== by 0x4965F3E: run_test (test.h:584)
==5033== by 0x496633B: main (test.h:654)
==5033==
==5054== 12 bytes in 1 blocks are possibly lost in loss record 88 of 270
==5054== at 0x7BC4C735: notify_alloc (heap.c:255)
==5054== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==5054== by 0x5248262: MSVCRT_operator_new (heap.c:63)
==5054== by 0x5586CF7: locale_facet_register (locale.c:257)
==5054== by 0x559B659: num_put_short_use_facet (locale.c:7850)
==5054== by 0x5573589: basic_ostream_short_print_ushort (ios.c:6996)
==5054== by 0x495C795: test_ostream_print_ushort (ios.c:1943)
==5054== by 0x495C8D1: func_ios (ios.c:1969)
==5054== by 0x4965F3E: run_test (test.h:584)
==5054== by 0x496633B: main (test.h:654)
==5054==
etc.
--
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=3548
Ryan Tandy <ryan(a)nardis.ca> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ryan(a)nardis.ca
--
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=3260
a3735815(a)drdrb.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |a3735815(a)drdrb.net
--- Comment #60 from a3735815(a)drdrb.net ---
Seems to be duplicate
http://bugs.winehq.org/show_bug.cgi?id=20827
--
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=31344
Bug #: 31344
Summary: Anarchy online unspecified crash after installation
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dazsul76(a)gmail.com
Classification: Unclassified
wine is reporting an unspecified error after instllation on version 1.4.
The error is received upon 1st launch after the install process. backtrace log
file attached.
PC = Asus K53SJ Laptop
Ram = 4gb
Video = Nvidia GT520M
--
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=30521
Bug #: 30521
Summary: Issue between JS and WMI
Product: Wine
Version: 1.5.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wmi&wbemprox
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fhajad(a)gmail.com
Classification: Unclassified
When attempting to run an example Javascript that utilizes WMI, it produces
error result. Did a new prefix and installed wmi and wsh57 via winetricks and
get errors.
Attached is the example Javascript and the 2nd attachment is the error recieved
when attempting to run 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=30564
Bug #: 30564
Summary: Program Mycomposer
Product: WineHQ.org
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ghost.24(a)libero.it
Classification: Unclassified
Program PhotoGenie.exe can't start.
Program Mycomposer don't update.
--
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=30453
Bug #: 30453
Summary: can't read email in forex metal
Product: Wine
Version: 1.4-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kamandanumajapahit(a)gmail.com
Classification: Unclassified
Created attachment 39816
--> http://bugs.winehq.org/attachment.cgi?id=39816
Forex metal can't read email
can't read email on terminal of forex-metal
--
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=30467
Bug #: 30467
Summary: BabasChess displays captured pieces area wrong - look
screencapture http://www.sendspace.com/file/lnphba
Product: Wine
Version: 1.5.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: asko.havumaki(a)gmail.com
Classification: Unclassified
Babaschess and Wine don't play together.
There is and area where captured chess pieces are.
Unfortunately this area is not good at all.
Wine drows black colour and it should be white (i think)
http://www.sendspace.com/file/lnphba
Cheers
Asko J
--
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=36468
Bug ID: 36468
Summary: Daemon tools 3.47 on WINE 1.7.18 installation crashes
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: marty.jelen(a)seznam.cz
It says : "The installer was interrupted befor DAEMON tools could be installed.
You need to restart the installer to try again " after restart it's the same.
Thanks. Sorry for my english
--
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=30460
Bug #: 30460
Summary: Cordell Command Assistant fails to load
Product: Wine
Version: 1.5.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fhajad(a)gmail.com
Classification: Unclassified
Created attachment 39827
--> http://bugs.winehq.org/attachment.cgi?id=39827
Terminal log when running Command Assistant
When attempting to run Command Assistant, it appears to fail registering. It
pops up an error message saying:
Invalid parameter
at System.Management.ManagementScope.Initialize()
at System.Management.ManagementObjectSearcher.Initialize()
at System.Management.ManagementObjectSearcher.Get()
At Siemens_EMML.AppIsRegistered.DaysRemaning(Int32
ProductCode, String Registration, String Signature)
Then asks to register, click okay, put in the proper two codes, click ok, then
pops up the error again says it's been registered for 0 days(as it usually
would), pops the error one more time, then fails.
I see in the background it loads the Database files it requires to operate, but
I can't interact with it in this fashion. I have attached the terminal output
that it gives me when I attempt to run. Unsure what else to run and attach.
I have installed the follow via Winetricks to support the application.
allfonts, ie6, wsh57, wmi, vcrun6, vcrun2008, msxml4, and dotnet20
--
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=30636
Bug #: 30636
Summary: winecrash invalid parameters regserver
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: furyhamster(a)gmail.com
Classification: Unclassified
Wine will crash with a message: invalid parameters /regserver
--
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=30649
Bug #: 30649
Summary: CD/DVD drive is detected as "Network sharing" type
instead of "CD-ROM"
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: primer.caballero(a)gmail.com
Classification: Unclassified
The CD/DVD drive is detected as "Network sharing" type instead of "CD-ROM", and
you cant change it in "winecfg" (the change is not saved). So any game which
requires CD/DVD while playing wont work.
It works ok in wine 1.1.x, 1.2.x, 1.3.0 to 1.3.13, and dont work from 1.3.14
onwards (including 1.4.x and 1.5.x).
I tryed this using Winesking Winery, not as an standalone wine installation.
--
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=24357
Summary: Pokerstars Network Status (ICMP, ping) doesn't work.
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: 415fox(a)gmail.com
Pokerstars mostly works, but the Network Status feature always says Bad 0%.
What it seems to do is ping a bunch of servers and although all of PokerStars'
other networking stuff works great now, this one doesn't seem to.
There are no error messages on the terminal. Other programs can use ping
successfully. For example WinPcap seems to have no problems.
--
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=30504
Bug #: 30504
Summary: Microsoft TrueType Fonts Eula Confirmer displays but
<Ok> button is unresponsive
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johnyate(a)hotmail.co.uk
Classification: Unclassified
A bit like Bug 18898. Right at the end of the installation process for Wine1.3
but I appeared to be getting upgraded to Wine1.4, just when I thought I was
winning with Wine, the EULA confirmer box for using Microsoft TrueType fonts
was displayed - so installation doing slightly better than bug 18898.
Clicking on the <Ok> button at the bottom of the screen did nothing. Pressing
Enter did nothing.
A further bug in Microsoft antagonist eyes, not *necessarily* mine, would be
the absence of a "<Not Ok>" button, with corresponding handler procedures !
No action options presented themselves in the window's system menu - arguably
inappropriate to be displaying the menu on what is just a verbose confirmer
box.
Closing this window left the entire Wine installation process in abeyance,
(installation processes still running etc.) indicating a further possible
absence of handler procedures. Perhaps difficult to believe anyone might want
to say "No" after all the trouble they had gone to to find out about the
installation and actually run it ...
I didn't notice an underlined character in the word "Ok", that might be
indicative of a hot-key, but with hindsight, maybe I could have tried Alt-O or
Alt-K ... not sure I will be allowed to start again from square 1 and get the
chance to try, though, even after a system re-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=30509
Bug #: 30509
Summary: Running Chinese Latale doesn't work
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kathylai3321(a)yahoo.com
Classification: Unclassified
Created attachment 39904
--> http://bugs.winehq.org/attachment.cgi?id=39904
crash report of the event described above
followed steps to make a new prefix in winebottler
run new prefix > verfying installer > shows running of game for split second
game begins to run and suddenly get a message that it encountered a serious
problem and needs to close. says it can be caused by a problem in the program
or a deficiency in Wine, but the program has no problem.
there was no other bug report of the same kind
--
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=30612
Bug #: 30612
Summary: software loaded & upgraded with module not found
error, application crashed on attempting to run.
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mills(a)bmi.net
Classification: Unclassified
Created attachment 40065
--> http://bugs.winehq.org/attachment.cgi?id=40065
Unhandled exception: page fault on write access to 0x00000004 in 32-bit code
(0x7bc451e6). Register dump:
ADMS-1G seems to load and upgrade except for one module not found error. Looks
correct but when I try to run it crashes with a "Control cannot be Created
55000x80040154" message.
Also submited to RT System - maybe they will make a port for Linux.
--
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=36464
Bug ID: 36464
Summary: 1.7.18 regression cannot extract python-3.4.0.msi with
wine 1.7.18
Product: Wine
Version: 1.7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: xantares09(a)hotmail.com
Hi,
This archive cannot be extracted
(https://www.python.org/ftp/python/3.4.0/python-3.4.0.msi) using wine 1.7.18:
xantares@fujitsu-l64:/tmp$ msiexec /i python-3.4.0.msi /qb TARGETDIR=/tmp
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
err:msidb:get_tablecolumns column 1 out of range
err:msidb:get_tablecolumns column 2 out of range
fixme:storage:create_storagefile Storage share mode not implemented.
err:msidb:get_tablecolumns column 1 out of range
[...]
err:msidb:get_tablecolumns column 3 out of range
Fortunately I had wine 1.7.17 in the pacman cache:
sudo pacman -U /var/cache/pacman/pkg/wine-1.7.17-1-x86_64.pkg.tar.xz
...
works!
=> It's a regression between wine 1.7.17 and 1.7.18
Same with python-3.4.0.amd64.msi
--
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=30466
Bug #: 30466
Summary: Rule the Rail program freezes after pressing 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: room10rosendael(a)hotmail.co.uk
Classification: Unclassified
Created attachment 39835
--> http://bugs.winehq.org/attachment.cgi?id=39835
after download program installs allows me to enter key then after pressing
Start the program freezes a quarter of the way into program with this report
After downloading and installing using Wine 1.4, I can enter my reg key but
when I press Start, the program freezes a quarter of the way into program, and
I have to log out then back in in order to carry on using my Ubuntu linux.
--
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=30633
Bug #: 30633
Summary: QTP 10.0 version not working through wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ankit.nriitm(a)gmail.com
Classification: Unclassified
qtp insatll
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36415
Bug ID: 36415
Summary: valgrind shows an invalid read in
ole32/tests/hglobalstream.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==24323== Invalid read of size 2
==24323== at 0x7B844735: GlobalLock (heap.c:440)
==24323== by 0x538C9DB: HGLOBALStreamImpl_Read (hglobalstream.c:170)
==24323== by 0x4D7AE73: func_hglobalstream (objidl.h:4381)
==24323== by 0x4DBDEA8: run_test (test.h:584)
==24323== by 0x4DBE297: main (test.h:654)
==24323== Address 0x480a180 is 16 bytes after a block of size 32 free'd
==24323== at 0x7BC4FF41: RtlFreeHeap (heap.c:263)
==24323== by 0x538CC0B: HGLOBALStreamImpl_Release (hglobalstream.c:124)
==24323== by 0x4D7ABFB: func_hglobalstream (objidl.h:4377)
==24323== by 0x4DBDEA8: run_test (test.h:584)
==24323== by 0x4DBE297: main (test.h:654)
==24323==
--
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=7106
--- Comment #20 from Austin English <austinenglish(a)gmail.com> ---
This is your friendly reminder that there has been no bug activity for 2 years.
Is this still an issue in current (1.7.18 or newer) wine?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25668
Summary: DAEMON Tools 3.47 does not finish installing
Product: Wine
Version: 1.3.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Created an attachment (id=32695)
--> (http://bugs.winehq.org/attachment.cgi?id=32695)
~/wine-git/wine daemon347.exe &> log.txt
The installation starts but it fails at the start and after says installation
incomplete.
Notable
wine: Call from 0x7b839242 to unimplemented function
setupapi.dll.SetupDiSetSelectedDevice, aborting
Repairing also fails as well as removing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36130
Bug ID: 36130
Summary: valgrind shows some invalid reads in
ole32/tests/hglobalstream.c
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
../../../tools/runtest -q -P wine -T ../../.. -M ole32.dll -p ole32_test.exe.so
hglobalstream && touch hglobalstream.ok
preloader: Warning: failed to reserve range 00110000-68000000
preloader: Warning: failed to reserve range 7f000000-82000000
==26781== Invalid read of size 2
==26781== at 0x7B841AFA: GlobalLock (heap.c:440)
==26781== by 0x534D47B: HGLOBALStreamImpl_Read (hglobalstream.c:170)
==26781== by 0x4D5792D: func_hglobalstream (objidl.h:4381)
==26781== by 0x4D466F7: main (test.h:584)
==26781== Address 0x4809c00 is 16 bytes after a block of size 32 free'd
==26781== at 0x7BC4CD2C: RtlFreeHeap (heap.c:1766)
==26781== by 0x534D662: HGLOBALStreamImpl_Release (hglobalstream.c:124)
==26781== by 0x4D57740: func_hglobalstream (objidl.h:4377)
==26781== by 0x4D466F7: main (test.h:584)
==26781==
==26781== Invalid read of size 4
==26781== at 0x7B84229F: GlobalReAlloc (heap.c:672)
==26781== by 0x534D244: HGLOBALStreamImpl_SetSize (hglobalstream.c:381)
==26781== by 0x4D579C1: func_hglobalstream (objidl.h:4391)
==26781== by 0x4D466F7: main (test.h:584)
==26781== Address 0x4809c02 is 18 bytes after a block of size 32 free'd
==26781== at 0x7BC4CD2C: RtlFreeHeap (heap.c:1766)
==26781== by 0x534D662: HGLOBALStreamImpl_Release (hglobalstream.c:124)
==26781== by 0x4D57740: func_hglobalstream (objidl.h:4377)
==26781== by 0x4D466F7: main (test.h:584)
==26781==
==26781== Invalid read of size 4
==26781== at 0x7B84229F: GlobalReAlloc (heap.c:672)
==26781== by 0x534D244: HGLOBALStreamImpl_SetSize (hglobalstream.c:381)
==26781== by 0x534D366: HGLOBALStreamImpl_Write (objidl.h:4391)
==26781== by 0x4D57A07: func_hglobalstream (objidl.h:4384)
==26781== by 0x4D466F7: main (test.h:584)
==26781== Address 0x4809c02 is 18 bytes after a block of size 32 free'd
==26781== at 0x7BC4CD2C: RtlFreeHeap (heap.c:1766)
==26781== by 0x534D662: HGLOBALStreamImpl_Release (hglobalstream.c:124)
==26781== by 0x4D57740: func_hglobalstream (objidl.h:4377)
==26781== by 0x4D466F7: main (test.h:584)
==26781==
err:storage:HGLOBALStreamImpl_Write IStream_SetSize failed with error
0x8007000e
--
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=29390
Bug #: 29390
Summary: applications remain in "applications" ("uninstall")
list after uninstall
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otaku(a)rambler.ru
Classification: Unclassified
applications remain in "applications" ("uninstall") list after their Uninstall
+ when trying to uninstall/reinstall application which is already deleted
Uninstall of some another application runs
+ sometimes Uninstall of not selected (even installed) but of another
application runs (especially for applications in a bottom of list)
--
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=28277
Summary: Deus Ex does not run correctly on Mac Os X 10.6.8
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Salz85(a)gmail.com
Created an attachment (id=36227)
--> (http://bugs.winehq.org/attachment.cgi?id=36227)
Deus Ex Log. Some parts of it have been written by the application itself.
Running the original Deus Ex (retail, patch version 1112fm) under Mac OS X
using wine shows a very different behaviour compared to a common linux distro.
Here are some important differences:
- The original OpenGL engine does not work under 10.6.8, while it runs
perfectly under ubuntu 11.04.
- Default gamma values for Direct3D engine look really dark. Probably due to
different gamma values between linux/Mac OS X tough.
- Sound and music cut after a few seconds while using Coreaudio.
- The game experiences various random crashes while playing. It crashes
everytime when exiting the game. None of those happen under linux.
I'm attaching a very simple log, created without any WINEDEBUG variables. (even
a simple +relay option creates a +500MB log file).
It looks like Deus Ex injects some of its debugging info inside of it, by the
way.
The comparison has been made on :
- iMac late 2010 (i3 3,2Ghz, ati 5670) running Mac OS X 10.6.8, wine version
1.3.27 installed from macports
and
- Core Duo 1.6 Ghz, 2 GB ram, nvidia 7400Go running ubuntu 11.04, wine 1.3.27
from winehq repositories.
--
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=32019
Bug #: 32019
Summary: feralheart stopps and it says that it have occurated
an error 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: carro.s98(a)hotmail.se
Classification: Unclassified
Created attachment 42203
--> http://bugs.winehq.org/attachment.cgi?id=42203
error from feralheart
when i play feralheart i can play max 5 mins and then everything freezez and a
window pops up where it says following: "the program FeralHeart has occured and
serious error and need to close" :( what can i do? i have a MacBook OS X 10.6.8
i really wanna play feralheart
--
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=28904
Bug #: 28904
Summary: Thief Deadly Shadows left mouse is JoyX
Product: Wine
Version: 1.3.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: haleykd(a)users.sf.net
Classification: Unclassified
System: arch x86-64 wine 1.3.31
Thief DS patched to 1.1
t3.exe from Thief3 editor pack for nocd
intro movies disabled
This problem is manifesting in multiple ways.
1. Start game.
2. start new game
3. try to scroll the briefing, it scrolls back up on its own.
4. continue into the game
5. when the game starts garret moves forward on his own.
6. hit ESC
7. go to the options menu.
8. try to scroll the av options list, it will automatically scroll back to the
top making it impossible to change any of the hidden options.
9. go to the inputs section to change key mappings
Note: This makes it impossible to change (except clearing) the key mappings.
10. use the right mouse to clear JoyX & Y from the mappings. Garett will no
longer move on his own, however the menu & briefing scroll problem is still
present.
11. click any of the None inputs with the mouse. JoyX will appear. (use right
mouse to clear the unwanted input)
12. use the cursor keys to select a key mapping
13. hit enter, JoyX will appear.
This problem does not occur with Deus Ex: IW which uses the same engine.
--
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=31716
Bug #: 31716
Summary: Heroes of Might and Magic 3 (HOMM3) crashes on opening
of the town window
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sokolov_d_s(a)mail.ru
Classification: Unclassified
Sometimes HOMM3 game crashes when hero's entered a town.
---
Heroes of Might and Magic 3 Complete ed.
Ubuntu 12.04
linux-image-3.2.0-30-generic-pae
fglrx-updates 2:8.960-0ubuntu1.1
ATI Mobility Radeon HD 5470
OpenGL vendor string: Advanced Micro Devices, Inc.
OpenGL renderer string: ATI Mobility Radeon HD 5000 Series
OpenGL version string: 4.2.11627 Compatibility Profile Context
--
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=13950
Summary: Adobe Photoshop CS2 crashes " user name, organization or
serial number is missing or invalid"
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maltis(a)gmx.de
Photoshop crashes on startup with the error message: " Your Adobe Photoshop
user name, organization or serial number is missing or invalid. The application
cannot continue and must now exit."
--
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=28514
Bug #: 28514
Summary: Azalia (Intel HDA) doesn't work in DirectX apps, but
works in non-DirectX apps
Product: Wine
Version: 1.3.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zdenek.styblik(a)gmail.com
Classification: Unclassified
Created attachment 36594
--> http://bugs.winehq.org/attachment.cgi?id=36594
FMOD error produced by Deus Ex: Human Revolution
Hello,
I have a sound-card identified as `00:14.2 Audio device: ATI Technologies Inc
SBx00 Azalia (Intel HDA) (rev 40)'(note: in a fact it is a `Realtek® ALC 887
8-Channel High Definition Audio CODEC' which can emulate AC97 and Intel HD)
which works in eg. winecfg, Deus Ex(not Human Revolution) and pretty much
everywhere where DirectX resp. DirectSound is not required.
However, it does not work under DirectX resp. applications using DirectSound.
And this is a big problem since a lot of games will not start without a
sound-card. Some, for example Deus Ex: Human Revolution, will start and keep on
printing error(attached file) and crash after some time(more like "I've tried
three times and got tired -> crashing.").
I've tried wine-1.3.24 to see if this is not regression. I'm sad to say, it is
not.
I have doubts this is a 'wineoss.drv' problem, but rather 'dsound' problem,
since sound works in non-dsound apps. I've checked source code, yet I'm short
for this one.
I have tried clean winedir, no dll overrides and it came blank. Nothing.
Driver is the latest free version of OSSv4, if this helps.
If there is anything more I can do, more info etc., let me know.
Thank you.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25748
Summary: Warcraft 3: crash after a game
Product: Wine
Version: 1.3.11
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: AntonReis(a)gmx.de
Created an attachment (id=32798)
--> (http://bugs.winehq.org/attachment.cgi?id=32798)
wine output from terminal
After I quit a game, wine crashed. (F10 - e - q)
I can't remember if I clicked 'ok' on the summary screen.
Terminal 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=30527
Bug #: 30527
Summary: League of Legends wont open through WINE, on fresh
install OR on pre-install on a Windows system.
Product: Wine
Version: 1.5.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nephallum_amathor(a)yahoo.com
Classification: Unclassified
Created attachment 39933
--> http://bugs.winehq.org/attachment.cgi?id=39933
Terminal output after doing the above terminal command to open League of
Legends.
>From both a fresh WINE install of LoL, aswell as a pre-installed and
pre-patched LoL install from a WinXP system(using WINE while logged into my
Linux system) on the computer, whenever i try to run lol.launcher.exe
rads_user_kernel.exe errors out. I get the following error when running the
terminal command:
" [josh@Amathor system] wine rads_user_kernel.exe run
"/media/FEB807E8B8079DF1/Riot Games/League of Legends/lol.launcher.exe""
I run the command while already in the directory /media/FEB*/Riot Games/League
of Legends/system where the rads_user_kernel.exe is located. the kernel starts
fine, it runs lol.launcher.exe just fine. Hoever, i get a few errors in the
terminal*see attachment* and thats it. same error wether im using a
pre-installed copy of LoL or a fresh install.
I'm using WINE 1.5.2 with winetricks, I have also tried Crossover to no avail.
Running on Fedora 16 (64bit*x86_64*) with a AMD Athlon II x2 4200+ and Nvidia
430GT graphics card. Have tried with 290.x and 295.40 nvidia drivers, no
diffrence, game doesnt get that far to have a problem with the drivers. Using
GNOME 3.2 desktop enviorment with openbox.
Note: On the install of LoL I did with WINE onto my linux system, I had to use
the workaround mentioned on the LoL AppDB page, it worked beautifully, but the
launcher wont start either way. Installer wouldn't even load without doing the
workaround.
--
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=31366
Bug #: 31366
Summary: XMPSetup does not display license text
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
Created attachment 41207
--> http://bugs.winehq.org/attachment.cgi?id=41207
Log: Start XMPSetup
wine-1.5.9-296-gc15097b
1. Download XMPSetup:
http://xmp.down.sandai.net/kankan/XMPSetup_4.9.0.1099-www.exe
2. Start with Wine.
Expect result:
Display some text in the license area
Actual result:
No text at all
winetricks riched20 works around
--
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=36158
Bug ID: 36158
Summary: Bloop demo fails to show text
Product: Wine
Version: 1.7.17
Hardware: x86
URL: http://www.desura.com/company/2sd/downloads/bloop-demo
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Created attachment 48309
--> http://bugs.winehq.org/attachment.cgi?id=48309
log
'winetricks d3dx9' provides a work-around.
--
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=35334
Bug ID: 35334
Summary: Sakura Strasse (visual novel) installer failure
Product: Wine
Version: 1.7.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hibi.sasahara(a)gmail.com
Classification: Unclassified
Installer failure. (by InstallShield)
Install wizard not start after preparations for installation.
In Windows show page "Welcome Setup".
Error dialog popup and exit.
Dialog title is: InstallShield
Dialog text is: 1608: InstallDriver インスタンスを作成できません。リターンコード: -2147221164
(meaning: 1608: InstallDriver cannot create instance. return code: -2147221164)
Note:
AppDB is
http://appdb.winehq.org/objectManager.php?sClass=version&iId=29634
I use default locale is Japanese. "LANG=ja_JP.UTF-8"
(no cure character corruption some parts.)
Trial version
The same failure occurs.
Download link to
http://mirror.tsundere.ne.jp/download/palette/d555d879054d57a855307aef39422…
sha1sum is
8766a8bee52a0ac8b02b71ba81d0576d7d3cf672
--
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=23856
Summary: Steam mouse-over popups create new instance windows in
X11
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: blender3dartist(a)gmail.com
CC: blender3dartist(a)gmail.com
Created an attachment (id=29946)
--> (http://bugs.winehq.org/attachment.cgi?id=29946)
Popup Problem on Mac
When you hold you mouse over a link, image, or anything else in Steam that is
clickable, it creates a new X11 window instance, in which is has it's own
(unclickable) minimize, maximize, and close buttons. This creates a problem
when trying to actually get a setting to save, and when then deciding to click
on whatever your mouse is hovering over.
In the attached screenshot, you can see the problem. (My mouse in for some
reason invisible in the screenshot, but it was hovering over the achievement.
--
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=36462
Bug ID: 36462
Summary: spaces in WINEPREFIX break wine
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 7WCbywQg3N2H(a)dyweni.com
if WINEPREFIX contains spaces, then wine cannot initialize the prefix.
export WINEPREFIX="/path/to/folder with spaces/wine"
export WINEARCH=win32
wineboot
wine: created the configuration directory
'/lkcs-devel/pdf-generation/utilities/PDF_Generation/work/wine'
err:process:init_windows_dirs directory L"C:\\windows" could not be created,
error 2
err:process:init_windows_dirs directory L"C:\\windows\\system32" could not be
created, error 3
err:process:init_windows_dirs directory L"C:\\windows" could not be created,
error 2
err:process:init_windows_dirs directory L"C:\\windows\\system32" could not be
created, error 3
err:wineboot:main Cannot set the dir to L"C:\\windows" (2)
err:process:init_windows_dirs directory L"C:\\windows" could not be created,
error 2
err:process:init_windows_dirs directory L"C:\\windows\\system32" could not be
created, error 3
err:process:init_windows_dirs directory L"C:\\windows" could not be created,
error 2
err:process:init_windows_dirs directory L"C:\\windows\\system32" could not be
created, error 3
Application tried to create a window, but no driver could be loaded.
The explorer process failed to start.
Application tried to create a window, but no driver could be loaded.
The explorer process failed to start.
err:setupapi:SetupDefaultQueueCallbackW copy error 2
L"\\\\?\\unix\\usr\\share\\wine\\l_intl.nls" ->
L"C:\\windows\\system32\\l_intl.nls"
err:setupapi:SetupDefaultQueueCallbackW copy error 3
L"\\\\?\\unix\\usr\\share\\wine\\l_intl.nls" ->
L"C:\\windows\\system32\\l_intl.nls"
err:setupapi:create_dest_file failed to create L"C:\\windows\\rundll.exe"
(error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\twain.dll"
(error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\twain_32.dll"
(error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\winhelp.exe"
(error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\winhlp32.exe"
(error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\command\\start.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system\\ddeml.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system\\mmsystem.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\ddhelp.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\dosx.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\dsound.vxd" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\winhlp32.exe" (error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\explorer.exe"
(error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\hh.exe" (error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\notepad.exe"
(error=3)
err:setupapi:create_dest_file failed to create L"C:\\windows\\regedit.exe"
(error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\explorer.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\iexplore.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\notepad.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\winetest.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\drivers\\mountmgr.sys" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\aspnet_regiis.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\ngen.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\fusion.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\regsvcs.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\regasm.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\servicemodelreg.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\presentationfontcache.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\msxml.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\msxml2.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\msxml3.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\msxml4.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\msxml6.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\shdocvw.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\gecko\\plugin\\npmshtml.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\wbem\\mofcomp.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\wbem\\wbemdisp.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\wbem\\wbemprox.dll" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\wbem\\wmic.exe" (error=3)
err:setupapi:create_dest_file failed to create
L"C:\\windows\\system32\\wbem\\wmiutils.dll" (error=3)
....
--
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=20111
Summary: FlatOut Ultimate Carnage quits silently
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nwarrenfl(a)gmail.com
When trying to run the game, Wine outputs the following:
fixme:win:EnumDisplayDevicesW ((null),0,0x33f8bc,0x00000000), stub!
fixme:actctx:FindActCtxSectionGuid 00000001 (null) 4
{9a5ea990-3034-4d6f-9128-01f3c61022bc} 0x33f7ac
fixme:actctx:FindActCtxSectionGuid 00000001 (null) 4
{9a5ea990-3034-4d6f-9128-01f3c61022bc} 0x33f758
fixme:actctx:FindActCtxSectionGuid 00000001 (null) 4
{9a5ea990-3034-4d6f-9128-01f3c61022bc} 0x33f0cc
However the game didn't start at all and quits.
To be able to find the problem (i hope), i've attached a debug log with all
debug channels.
--
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=34590
Bug #: 34590
Summary: installer of Weibo desktop: installation patch didn't
display
Product: Wine
Version: 1.7.2
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
Created attachment 46070
--> http://bugs.winehq.org/attachment.cgi?id=46070
+richedit
reproduce follow this:
0. download it and run the installer;
1. click the button with text "下一步" in the first step;
2. in second step you can see the installation path in the text editor does not
display.
( as picture buildin.png show, and picture is what it look like with native
riched20.dll )
'winetricks -q riched20' makes it happier.
Wine: wine-1.7.2-171-g12586f7
MD5 (Weibo2012.2.6.0.33210.exe) = f9a1e99b6b9c33f206e1b90d524d4ff1
BTW: This is a software in Chinese and I didn't find a english version. So if
anyone needs any help when reproducing it, feel free to ping me in #winehackers
or email to me.
--
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=27868
Summary: Steam in xfce: xfwm4 friends list menu closes
Product: Wine
Version: 1.3.24
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: FinalCrisisSX(a)Hotmail.com
I am on Arch Linux x64 up to date, using wine 1.3.24 and xfce 4.8. This happens
in any older version of wine I tried though.
Basically, when using xfce's native window manager, dropdown menus for friends
will close. It appears to be related to a mouse over of options in the menu
that are grayed out. This does not occur when running KDE's kwin or gnome's
metacity either natively or in xfce4.
To reproduce: Click the down arrow menu button next to someone's name in the
steam friends list (or in a conversation window). You should see these options:
Send message, view steam profile, invite to chat room, join game, launch game,
etc. If you are not in a chat room to invite your friend, the 'invite to chat'
option is naturally greyed out. If you mouse over that option when it is greyed
out and move the mouse up or down to re-highlight another option, the menu bugs
out and closes itself. This can be worked around. If you move the mouse to the
left before touching the greyed out option then down and back to the right (ie
move the mouse around the option outside of the menu), the menu will continue
functioning.
--
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=32046
Bug #: 32046
Summary: Adobe Photoshop Elements 10.0 rubber stamp does not
work
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luis.busquets(a)ilidium.com
Classification: Unclassified
The rubber stamp is selected. Then ALT key is pressed and click in the mouse to
select a zone. Then ALT is released and the mouse has to be clickd to clone the
selected zone. However, when clicking it says that the zone was not selected
and there is no origin. It seems as if the programme had failed to copy a
certain memory area that includes the image it hase to clone.
--
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=36448
Bug ID: 36448
Summary: gta 3 debugger not starting
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: pozhilan6(a)gmail.com
Created attachment 48478
--> http://bugs.winehq.org/attachment.cgi?id=48478
debugger is not starting
Last login: Sat May 10 21:51:35 on ttys000
pozhilans-MacBook-Pro:~ pozhilan6$ /Users/pozhilan6/Downloads/Grand\ Theft\
Auto\ III.app/Contents/MacOS/cider_noui ; exit;
Could not stat /Users/pozhilan6/Downloads/Grand Theft Auto
III.app/Contents/Resources/transgaming/f_drive (No such file or directory),
ignoring drive F:
Warning: Language 'en_IN' was not found, retrying without country name...
For language 'en' several language ids were found:
en_US - 0409; en_GB - 0809; en_AU - 0C09; en_CA - 1009; en_NZ - 1409; en_IE -
1809; en_ZA - 1C09; en_JM - 2009; en_ - 2409; en_BZ - 2809; en_TT - 2C09;
Instead of using first in the list, suggest to define
your LANG environment variable like this: LANG=en_US
fixme:profile:PROFILE_Open no encoding specified for
L"/Users/pozhilan6/Library/Preferences/Grand Theft Auto III
Preferences/win.ini" - defaulting to ASCII
fixme:sdldrv:SDLDRV_SDLGL_ContextDestroy time to kill master context 0x13c2f0
(ctx 0x7595a400)
fixme:system:SystemParametersInfoA Unknown action: 8193
err:module:BUILTIN_LoadModule loaded .so but dll joystick.drv still not found
err:module:BUILTIN_LoadModule loaded .so but dll joystick.drv still not found
err:module:BUILTIN_LoadModule loaded .so but dll joystick.drv still not found
err:module:BUILTIN_LoadModule loaded .so but dll joystick.drv still not found
fixme:sdldrv:SDLDRV_SetScreenSaveActive (0): stub
fixme:system:SystemParametersInfoA Unimplemented action: 86
(SPI_SETPOWEROFFACTIVE)
fixme:system:SystemParametersInfoA Unimplemented action: 85
(SPI_SETLOWPOWERACTIVE)
fixme:system:SystemParametersInfoA Unimplemented action: 59 (SPI_SETSTICKYKEYS)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00000000,00000008)
fixme:quartz:IFilterGraph2_fnConnect (0x2670200)->(0x26704b4,0x2671834) not
fully implemented
fixme:quartz:CMPGParseImpl_InitParser no mpeg/system support
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00000000,00000008)
fixme:quartz:IFilterGraph2_fnConnect (0x2670200)->(0x26711ac,0x2671834) not
fully implemented
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00000000,00000008)
fixme:quartz:IFilterGraph2_fnConnect (0x2670200)->(0x2673f1c,0x2671834) not
fully implemented
fixme:quartz:CMPEGAudioDecoderImpl_CheckMediaType (0x2670c90)
err:module:BUILTIN32_dlopen failed to load .so lib for builtin .dll:
dlopen(/Users/pozhilan6/Downloads/Grand Theft Auto
III.app/Contents/Frameworks/lib.dylib, 2): image not found
err:module:BUILTIN32_dlopen failed to load .so lib for builtin .dll:
dlopen(/Users/pozhilan6/Downloads/Grand Theft Auto
III.app/Contents/Frameworks/lib.dylib, 2): image not found
fixme:quartz:CTransformBaseOutPinImpl_OnPostConnect (0x2673f00,0x26755cc)
fixme:gdi_sdldrv:SDLDRV_blitSurface2 unimplemented blit function! {type =
SDLDRV_BLIT_STRETCH (1), op = SDLDRV_BLIT_OP_SRCCOPY (0), converting
SDLDRV_BLIT_1_BIT (1) to SDLDRV_BLIT_1_BIT (1)}
fixme:sdldrv:SDLDRV_DC_StretchBlt {0x3878e0, 0, 0, 16, 16, 0x387b30, 0, 0, 32,
32, SRCCOPY (cc0020)}: stub
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x381a10)->(00010023,00000011)
err:hook:HOOK_CallHook Recursive hook call detected
wine: Unhandled exception, starting debugger...
fixme:ntdll:NtQuerySystemInformation (0x00000005,0x388930,0x00001000,0x0),
mostly-stub!
fixme:dbghelp:dump_system_info fill in CPU vendorID and feature set
err:dbghelp:pe_load_debug_info loading debug information failed for module
'"gta3"'
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_debug_info loading debug information failed for module
'"mss32"'
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:pe_load_native_module could not open the executable image
err:dbghelp:SymGetModuleBase no module containing the address 0x9086f91c was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x9086f91c
err:dbghelp:SymGetModuleBase no module containing the address 0x9086f91c was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x9086fd24 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x9086fd24
err:dbghelp:SymGetModuleBase no module containing the address 0x9086fd24 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x70019195 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x70019195
err:dbghelp:SymGetModuleBase no module containing the address 0x70019195 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7001933d was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7001933d
err:dbghelp:SymGetModuleBase no module containing the address 0x7001933d was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x70019421 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x70019421
err:dbghelp:SymGetModuleBase no module containing the address 0x70019421 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7c13565f was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7c13565f
err:dbghelp:SymGetModuleBase no module containing the address 0x7c13565f was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78378617 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78378617
err:dbghelp:SymGetModuleBase no module containing the address 0x78378617 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78340411 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78340411
err:dbghelp:SymGetModuleBase no module containing the address 0x78340411 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78344d0f was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78344d0f
err:dbghelp:SymGetModuleBase no module containing the address 0x78344d0f was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78305a6e was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78305a6e
err:dbghelp:SymGetModuleBase no module containing the address 0x78305a6e was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78308d8a was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78308d8a
err:dbghelp:SymGetModuleBase no module containing the address 0x78308d8a was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78308ded was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78308ded
err:dbghelp:SymGetModuleBase no module containing the address 0x78308ded was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7833b4eb was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7833b4eb
err:dbghelp:SymGetModuleBase no module containing the address 0x7833b4eb was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7833d6f1 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7833d6f1
err:dbghelp:SymGetModuleBase no module containing the address 0x7833d6f1 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78f5890c was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78f5890c
err:dbghelp:SymGetModuleBase no module containing the address 0x78f5890c was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7833a184 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7833a184
err:dbghelp:SymGetModuleBase no module containing the address 0x7833a184 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78f58e2a was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78f58e2a
err:dbghelp:SymGetModuleBase no module containing the address 0x78f58e2a was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7833a375 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7833a375
err:dbghelp:SymGetModuleBase no module containing the address 0x7833a375 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78305bee was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78305bee
err:dbghelp:SymGetModuleBase no module containing the address 0x78305bee was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78306487 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78306487
err:dbghelp:SymGetModuleBase no module containing the address 0x78306487 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78307708 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78307708
err:dbghelp:SymGetModuleBase no module containing the address 0x78307708 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x783078f4 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x783078f4
err:dbghelp:SymGetModuleBase no module containing the address 0x783078f4 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x78307ba3 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x78307ba3
err:dbghelp:SymGetModuleBase no module containing the address 0x78307ba3 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7c135df5 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7c135df5
err:dbghelp:SymGetModuleBase no module containing the address 0x7c135df5 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7009cef3 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7009cef3
err:dbghelp:SymGetModuleBase no module containing the address 0x7009cef3 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x70097fe1 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x70097fe1
err:dbghelp:SymGetModuleBase no module containing the address 0x70097fe1 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x7009800f was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x7009800f
err:dbghelp:SymGetModuleBase no module containing the address 0x7009800f was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x98ad55fb was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x98ad55fb
err:dbghelp:SymGetModuleBase no module containing the address 0x98ad55fb was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x98ad5485 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x98ad5485
err:dbghelp:SymGetModuleBase no module containing the address 0x98ad5485 was
found
err:dbghelp:SymGetModuleBase no module containing the address 0x98adacf2 was
found
err:dbghelp:SymFromAddr could not find the module that contains the address
0x98adacf2
err:dbghelp:SymGetModuleBase no module containing the address 0x98adacf2 was
found
err:seh:start_debugger Couldn't start debugger ("winedbg -- --auto 1 184")
(998)
Read the Wine Developers Guide on how to set up winedbg or another debugger
logout
[Process completed]
--
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=36455
Bug ID: 36455
Summary: Warlock 2: Crash in msvcp110 memmove
Product: Wine
Version: 1.7.18
Hardware: x86-64
URL: http://warlock2.com
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: brix(a)brix-verden.dk
Created attachment 48498
--> http://bugs.winehq.org/attachment.cgi?id=48498
Backtrace with debug symbols
The game crashes when loading (started from Steam).
Does not seem directly related to bug 34480/35874 as the patch/hack from that
report didn't help.
Note that the wine in Arch is compiled using gcc 4.9.
--
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=29479
Bug #: 29479
Summary: Sins of a Solar Empire: can't change screen resolution
Product: Wine
Version: 1.3.35
Platform: x86
URL: http://www.gamershell.com/news_46837.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pavel.ondracka(a)gmail.com
Classification: Unclassified
Created attachment 38160
--> http://bugs.winehq.org/attachment.cgi?id=38160
terminal output
In menu, options, video tab there should be a list of possible resolutions to
change, however the list is empty so you can't change anything.
This is with NVIDIA 9600GSO
Driver version: 280.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=30560
Bug #: 30560
Summary: Can't paste into Lotus Notes
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: lameventanas(a)gmail.com
Classification: Unclassified
When I copy text from Firefox and try to paste it into Lotus Notes I get an
error message dialog saying:
Only text can be pasted into this type of field
If I copy the text from a kate, it works.
This bug was reported and fixed 6 years ago in the Codeweavers fork:
http://www.codeweavers.com/support/tickets/browse/?ticket_id=75672
--
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=34466
Bug #: 34466
Summary: Can not start CrossDJ
Product: Wine
Version: 1.7.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: levanchelidze(a)gmail.com
Classification: Unclassified
Created attachment 45887
--> http://bugs.winehq.org/attachment.cgi?id=45887
backtrace
I downloaded a free app CrossDJ from
http://www.mixvibes.com/products/try-crossdj-free
Created a x32 wine prefix and installed this software.
When I tried to start this software it crashed
--
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=32226
Bug #: 32226
Summary: Wine does not handle program registry and trial period
with Neopaint all versions. Valid entries come back as
invalid.
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: info(a)rudolfkahl.nl
Classification: Unclassified
Created attachment 42503
--> http://bugs.winehq.org/attachment.cgi?id=42503
screen dump of situation after entering registry codes
The only programs I use with wine under Linux are art programs like
Photoshop Elements (working perfectly with wine), Arcsoft PhotoImpression 4
(working perfectly), PhotoFiltre, all versions (working well). With wine 1.3
I also could use Neopaint 4 and Neopaint 5 perfectly, but since the upgrade,
none of the Neopaints get through the registration feature. With Wine in
combination with the program to run the completely legal registration code
is not recognized as such. I earlier had the same problem with
Arcsoft's PhotoStudio 6, where the registration procedure was incomplete.
One could enter the given registration code but it was not recognized as
valid and, in this case, also the bar for the trial period was missing.
Somehow wine has a serious problem with these issues. As far as NeoPaint of
Neosoftware is concerned, something in wine 1.4 has changed in regard to 1.3
that was not for the better. Maybe someone might have a look at 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=32236
Bug #: 32236
Summary: fail to install FreeDWGViewer
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aroma(a)axxess.co.za
Classification: Unclassified
Created attachment 42524
--> http://bugs.winehq.org/attachment.cgi?id=42524
backtrace for the installation problem
Failed to install FreeDWGViewer
--
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=36438
Bug ID: 36438
Summary: Critical error while trying to sign in to Yahoo!
Messenger 11
Product: Wine
Version: 1.6.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stratiladimitrie(a)rocketmail.com
Created attachment 48460
--> http://bugs.winehq.org/attachment.cgi?id=48460
This file was saved when a windows popped up withe the back trace and a dialog
box asking if I want to save the backtrace(when the application crashed)
Yahoo! Messenger 11(latest version downloaded from the Yahoo website)
I opened the program with Wine Windows Program loader(right-click on the file,
first option)
I installed it, and meanwhilw I did not experience any error messages.
The file attached I was able to save after I tried first time to sign in with
my account.
--
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=10461
Summary: Photoshop CS2 can't use multiple scratch disks
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michal(a)lightcomp.cz
Photoshop tries to use more space on scratch disk than it is available. I have
8GB of memory but PS can use only 1.8GB. So I set limit of tmpfs mounted as
/dev/shm to 6GB. PS uses this location as first scratch disk. Second is regular
drive. Normally PS should use second scratch disk when first is full. But it
allocates empty file that is bigger than 6GB and tries to use it. When file is
written up to 6GB limit, Photoshop displays error message:
Disk error -34 occurred while reading or writting to a scratch disk. Sorry, but
this error is unrecoverable.
I tried it also with other filesystem than tmpfs. Behavior is the same.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36284
Bug ID: 36284
Summary: valgrind shows a leak in inetmib1/tests/main.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==28471== 28 bytes in 1 blocks are definitely lost in loss record 21 of 75
==28471== at 0x7BC4C735: notify_alloc (heap.c:255)
==28471== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==28471== by 0x4A87201: SnmpUtilOidCpy (main.c:332)
==28471== by 0x4AA18F3: ???
==28471== by 0x4944E3D: testInit (main.c:67)
==28471== by 0x49469FE: func_main (main.c:504)
==28471== by 0x4947804: run_test (test.h:584)
==28471== by 0x4947BF2: main (test.h:654)
==28471==
--
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=32538
Bug #: 32538
Summary: serial interface worked fine under wine 1.2 but
problem under wine 1.4
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: preludi(a)web.de
Classification: Unclassified
- want to use serial interface with software PCSync for Windows 3.1.2 (software
see link attached)
- serial interface worked fine with wine 1.2; works no longer in wine 1.4
- problem in wine 1.4: serial interface can not be initialized any more by the
software PCSync ...
- same problem in original Windows XP; can be solved using the device manager
and adjust serial interface to baud rate = 38400; parity = none; word length =
7 bit
- no device manager in wine available, no adjustment possible
- wine registry: setting com1: from 9600,n,8,1 to 38400,n,7,0 has no effect at
all
- something related to serial interface must have changed in a negative way
from wine 1.2 to wine 1.4
- attachment:
file 1: PCSync software (install under wine 1.4, press button F5 (=
initialising the serial interface -> error message; same thing under wine 1.2 =
fine!)
file 2 and 3: pictures showing baud rate and 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=24887
Summary: PSdeluxe,an artshow that comes in a CD-ROM of Adobe
Photoshop 3.0,does not play.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: windowscodecs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: crostrogarcia(a)gmail.com
It is really a very old CD-ROM, it was meant to be played in Windows 3.1. I
have another one of Windows 95 that plays OK.
--
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=7372
Alexander V. Chernikov <melifaro(a)ipfw.ru> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|melifaro(a)ipfw.ru |
--
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=7372
--- Comment #56 from Rosanne DiMesio <dimesio(a)earthlink.net> ---
>From some quick testing, copy/pasting text from native Firefox, Opera, and
Konqueror into Powerpoint 2007 works with the patches. I tested both
ctrl-c/ctrl-v and the copy/paste menu items.
--
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=7372
Ken Thomases <ken(a)codeweavers.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ken(a)codeweavers.com
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7372
--- Comment #55 from Ken Thomases <ken(a)codeweavers.com> ---
Just to be clear, the Windows CF_HTML format doesn't require _the_ complete
document (the whole original HTML document from which the fragment was copied),
but _a_ complete document (the fragment plus the start and end tags of the
nodes in which it is contained). The link you gave gives examples of fragments
copied from larger documents. By the way, this
<http://msdn.microsoft.com/en-us/library/windows/desktop/ms649015%28v=vs.85%…>
seems to be a more up-to-date article in terms of its descriptions of the
context, although the examples have busted HTML.
We should surround the fragment with "<!--StartFragment-->" and
"<!--EndFragment-->" since apps are also allowed to find it by searching for
those strings, rather than using the offsets.
--
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.