http://bugs.winehq.org/show_bug.cgi?id=14414
Summary: WordPerfect 11: Application will start normally only
once
Product: Wine
Version: 1.0.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Start application after clean install. Shut application down. Start it again.
Splash screen appears (eventually), splash screen disappears (eventually).
Then nothing. Main window does not apppear. No 'entry' on the task bar. No
amount of window maximisation/minimisation, desktop switching etc. will make
the main window appear. There are tasks but they are not eating CPU (ps -f -u
$USER confirms this).
Starting the application a second time (in a different console window) gives:
err:ole:CoUninitialize Mismatched CoUninitialize
and exits. The first invocation puts up the main window (which is almost a
'shaded'). Roll this window down and the application is usable. Ther is
nothing untoward in the console output of the first invocation.
Note: First invocation of application after install produces a pop-up window
claiming the serial number (aka licence key) cannot be found. Only after
entering the appropriate number (key) does the main window appear. However, I
have had 'nothing happens' behaviour after a file recovery pop-up after
application crash.
Installer 'requires' winetricks wsh56 but application is run without any dll
overrides. winetricks corefonts are installed.
Behaviour is repeatable. Host is Kubuntu 8.04 x86, Linux is 2.6.19.
--
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=14397
Summary: Paradox 11: Unhandled exception on Applicaation Launch
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Created an attachment (id=14711)
--> (http://bugs.winehq.org/attachment.cgi?id=14711)
Backtrace of Unhandled Exception
Attempt to start Paradox 11 gives a splash screen followed by an Unhandled
Exception due to an access to 0x00000000 in pxsrv32. Backtrace attached.
This occurs with Paradox 11 installed from CD with WordPerfect Office 11 (2003)
and WordPerfect Office X3 (2005).
The Wine configuration does not specify any native dll overrides but wsh56 was
installed in order to facility the installation of the application, which
appears to make heavy use of mfc42.dll.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15329
Summary: Unable to install Sony Picture Utility, Failed to load
DLL Localesetting
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martin.kellner(a)ekol.slu.se
When trying to install Sonys Sony picture utility got: Error number 0x80040702
Description: Failed to load DLL: Localesetting.
--
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=14891
Summary: Bitmaps with offset bits do not display correctly
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://entropymine.com/jason/bmpsuite/
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)gringer.dis.org.nz
Created an attachment (id=15458)
--> (http://bugs.winehq.org/attachment.cgi?id=15458)
program to load a bitmap from command line, display on screen
I was hunting around for small windows programs to display bitmaps via GDI so
that I could test the bitmap display code in Wine (to follow an afterthought I
had relating to bug 14868). Since I wasn't able to find anything, I decided to
write my own (attached), then run it through Jason Summers' bitmap test suite
(http://entropymine.com/jason/bmpsuite/reference/reference.html). One of these
bitmaps failed the test (g08offs.bmp), appearing different to the reference
image. According to the reference page, the "... bfOffBits in [the] header not
set to the usual value. There are 100 extra unused bytes between palette and
bits."
The program has been compiled with mingw32 (Version 4.2.1.dfsg-1) on a Debian
system (see Makefile for full parameters etc.).
Running Wine off a git branch pulled ~1.5 days ago, with patch from bug 14868.
--
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=14710
Summary: OleLoadPicturePath loads image in windows but not in
wine, could cause access violation in some circumstances
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support(a)robertinventor.com
Created an attachment (id=15202)
--> (http://bugs.winehq.org/attachment.cgi?id=15202)
source code for program to duplicate the bug
This code works in Windows but not in Wine - running under KDE
WCHAR wpath[MAX_PATH];
MultiByteToWideChar(CP_ACP, 0, pszPath, -1, wpath, MAX_PATH);
IPicture* pPic=NULL;
CoInitialize(NULL);// NOT NEEDED IN WINDOWS
// INCLUDED JUST IN CASE IT IS NEEDED FOR WINE but doesn't fix it.
OleLoadPicturePath(wpath, NULL, NULL, NULL, IID_IPicture,(LPVOID*)&pPic);
...
In case where the file does exist, OleLoadPicturePath isn't initialising pPic.
If the app tests for file existence first, and doesn't initialise pPic, the
result could be an access violation.
(I'm using the VMWare MultiBrowser Appliance as a way to run Linux on my Vista
machine.)
Source code for app attached, obviously replace the example pictures with
existing files on your machine.
Hope this helps. The reason my app calls OleLoadPicturePath(..) instead of
LoadImage(..) is because it is an easy way to add the capability to load jpegs
and gifs without need to add extra image libraries (which would add to the size
of the installer).
Not that important for my program, just means the users would have to convert
the skin images to bitmaps in order to use them. But maybe it might affect
other programs too, and could cause an access violation if the programmer
doesn't initilise the pPic.
Hope this helps, any questions?
Robert
--
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=14262
Summary: Wordview bullet in doc is not the same
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kjloh71(a)gmail.com
CC: kjloh71(a)gmail.com
Created an attachment (id=14553)
--> (http://bugs.winehq.org/attachment.cgi?id=14553)
wordview display
the bullet in the document is not the same using openoffice or the native word
2003. please see the attached sample.
both file has no problem opened in wordview under window.
ubuntu 8.04, wine 1.1.0
--
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=14195
Summary: EINTR in WS_select
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anisimkov(a)ada-ru.org
I have an Win32 application written in Borland Delphi using Eureka tool
(http://www.eurekalog.com/)
working in Wine but with one error.
If exception occured in main thread,
WinAPI 'select' call in secondary thread interrupted with WSAINTR error code.
The short Delphi example is in the attached sample.tar.bz2.
WSAINTR result in Win32 select mean
"A blocking Windows Socket 1.1 call was canceled through
WSACancelBlockingCall."
(http://msdn.microsoft.com/en-us/library/ms740141(VS.85).aspx)
But
"The WSACancelBlockingCall function has been removed in compliance with the
Windows Sockets 2 specification, revision 2.2.0.
The function is not exported directly by WS2_32.DLL and Windows Sockets 2
applications should not use this function.
Windows Sockets 1.1 applications that call this function are still supported
through the WINSOCK.DLL and WSOCK32.DLL."
(http://msdn.microsoft.com/en-us/library/ms741547(VS.85).aspx)
Wine translates EINTR error code into WSAINTR error code.
But in Linux EINTR have a different meaning
"EINTR A signal occurred before any requested event."
(man poll)
I propose the following patch to ignore the EINTR error code in Wine
'WS_select' based on Linux poll call:
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index fa908b4..a98717e 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -2591,7 +2591,10 @@ int WINAPI WS_select(int nfds, WS_fd_set *ws_readfds,
if (ws_timeout) timeout = (ws_timeout->tv_sec * 1000) +
(ws_timeout->tv_usec + 999) / 1000;
- ret = poll( pollfds, count, timeout );
+ while ((ret = poll( pollfds, count, timeout )) < 0)
+ {
+ if (errno != EINTR) break;
+ };
release_poll_fds( ws_readfds, ws_writefds, ws_exceptfds, pollfds );
if (ret == -1) SetLastError(wsaErrno());
The wine already have a similar EINTR ignore
git-diff 84232099^ 84232099 -- dlls/winsock/socket.c
index cfbf49f..0f1ba34 100644
--- a/dlls/winsock/socket.c
+++ b/dlls/winsock/socket.c
@@ -589,7 +589,13 @@ static inline int do_block( int fd, int events )
pfd.fd = fd;
pfd.events = events;
- poll(&pfd, 1, -1);
+
+ while (poll(&pfd, 1, -1) < 0)
+ {
+ if (errno != EINTR)
+ return -1;
+ }
+
return pfd.revents;
}
Thank you for attension and for great software.
Best regards.
Dmitriy Anisimkov.
--
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=14079
Summary: Dungeon Siege installation impossible
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ingo(a)gerth-ac.de
Created an attachment (id=14298)
--> (http://bugs.winehq.org/attachment.cgi?id=14298)
Wine's output during the installation
During the installation of Dungeon Siege, the text in info boxes is not drawn
correctly, i.e. they boxes are plain blank.
This makes it impossible to install the game.
I believe that at one point of the installation the routine tries to ask me to
put the second CD into the CD slot but it is not possible because the O/S says
it is used by another process.
--
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=13278
Summary: Qtracker crashes
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.qtracker.com/downloads/Qtracker471.exe
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
A user submitted garbage test results into appdb for this app. It starts fine
in wine-0.9.17. In current git it crashes. winetricks cc580 works around the
crash. If i have more time i'll do a regression test
--
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=12869
Summary: Rollcage Stage II demo crashes
Product: Wine
Version: 0.9.60
Platform: PC
URL: http://www.download.com/Rollcage-Stage-II-demo/3000-
7522_4-10230148.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: quest2013(a)emailengine.org
Created an attachment (id=12578)
--> (http://bugs.winehq.org/attachment.cgi?id=12578)
Rollcage Stage II crash output
After an apparently successful install, trying to run Rollcage.exe, it crashes.
Concerning the attachment. The first line about ALSA not found has to do with
me using Gobolinux 014. Sound does work with other games even when that ALSA
message shows 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=11896
Summary: Civilization4.exe crashes because of unimplemented
function __iob_func
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luis.busquets(a)ilidium.com
When using the wine version msvcr71.dll the program crashes because of
unimplemented function __iob_func
--
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=11892
Summary: GdipCreateBitmapFromFile & GdipCreateBitmapFromStream
give upside down bitmap
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cbill.lam(a)gmail.com
if use GdipCreateBitmapFromFile or GdipCreateBitmapFromStream to create bitmap
from a bmp or jpeg file, the bitmap created is upside down as seen from the
negative stride in GdipBitmapLockBits. However native gdiplus gives positive
stride and this may be an undocumented feature of gdiplus.
--
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=9263
Summary: Guild Wars terribly slow
Product: Wine
Version: 0.9.42.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gandalf.pk(a)gmail.com
Hi there, I am pretty new to this, so don't bash me if i did something wrong. I
looked in the bugs, and there were some regarding Guild Wars running not at
all, but my problem is something different:
Guild Wars starts pretty normally, then after connected to arena net, the main
game window appears in a few seconds-minutes. Then it becomes real carnage,
slideshow, i mean, horrible mess, like 1 frame per 5 seconds.
SW Wine configuration:
tried alternatives for Win98,W2K,WXP settings for GW.exe; tried -dx8, -opengl
(doesnt work at all), -dx9 swithes, tried -noshaders, nosound, dsound, nothing
helped.
Distro: Elive Gem 1.0. - basically Debian Etch
HW:
AMD64 3000+ on ondemand k8 powernow module
512 MB ram
ati Radeon 9550 128MB graphics card
(these should not be the limits, since game runs smooth on windows)
I will post any log or anything, just tell me what to do. Thanks.
Peter
--
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=15235
Summary: After setup drivers for WizardPen-tablets
(wizardpen_drv.so) in X11, Photoshop 7.0 crash at
startup
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor.kruglenko(a)gmail.com
Created an attachment (id=16009)
--> (http://bugs.winehq.org/attachment.cgi?id=16009)
Crash-log
After setup drivers for WizardPen-tablets (wizardpen_drv.so) in X11, Photoshop
7.0 crash at startup.
Distr: Ubuntu 8.04
Driver for WizardPen from
http://www.kubuntu.dk/wizardpen/wizardpen-0.6.0.2.tar.gz
Setup drivers how-to: https://help.ubuntu.com/community/TabletSetupWizardpen
My tablet is Genius WiardPen 5x4
--
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=14360
Summary: dosmem forgot MAP_FIXED
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jreiser(a)BitWagon.com
Created an attachment (id=14657)
--> (http://bugs.winehq.org/attachment.cgi?id=14657)
dosmem use MAP_FIXED; new WINE_NO_DOSMEM_64KB environment variable
Dosmem forgot MAP_FIXED when calling wine_anon_mmap() to allocate memory at
assumed fixed addresses for the low 1 MiB and 64 KiB. It is a bug to assume
that the result address equals the requested address, unless MAP_FIXED. Also,
add a new environment variable WINE_NO_DOSMEM_64KB to inhibit the low 64 KiB,
even if the opreating system would allow it. By default, Linux 2.6.24
prohibits mmap in the range [0, 0x10000). Patch is attached and will be sent
to wine-patches(a)winehq.org.
--
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=14338
Summary: Blade of Darkness crash or hangs on certain levels using
D3D plugin
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: samurai_no_densetsu(a)yahoo.es
On certain levels like the one with lava pits, using D3D plugins leads to game
crash/hang dropping this on console:
wine: Assertion failed at address 0xffffe410 (thread 0009), starting
debugger...
I also tested extensively an opengl glidewrapper and plugin and this crash only
happens when D3D is used.
--
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=14335
Summary: WordPerfect Office 2000: Custom Install Exits Abruptly
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Attempt to install Word Perfect Office 2000 from OEM CD.
Choose custom install. Install proceeds but exits abruptly and prematurely
with no traceback or any indication of an error either from the installer or
from Wine.
Console log is very short.
$ wine 'f:\setup.exe'
fixme:wave:wodPlayer_Reset shouldn't have headers left
fixme:setupapi:SetupDefaultQueueCallbackW notification 262144 params 33f98c,0
err:setupapi:SetupDefaultQueueCallbackW copy error 0
L"C:\\windows\\temp\\MSE000\\REGSVR32.EXE" ->
L"C:\\windows\\system32\\REGSVR32.EXE"
fixme:advapi:InitiateSystemShutdownExA (null) (null) 0 0 1 458752
fixme:win:EnumDisplayDevicesW ((null),0,0x33e7a0,0x00000000), stub!
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program
Files\\Corel\\WordPerfect Office 2000\\programs\\Pfbc90.tlb" failed with error
2
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program
Files\\Corel\\WordPerfect Office 2000\\programs\\Pfob90.tlb" failed with error
2
fixme:ole:DllRegisterServer stub
fixme:atl:AtlModuleInit SEMI-STUB (0x67985650 0x679815f8 0x67900000)
Choose typical install and there is no premature exit. The is no AtlModuleInit
fixme message in the log.
The custom install option that seems to give the trouble is WordPerfect
9/Trellix 2.1.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14334
Summary: WordPerfect Office 2002: Unable to Install
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Attempt to install WordPerfect Office 2002 from OEM CD.
First reports
"You do not have administrator privileges on this machine."
"Setup cannot continue."
Set Windows version to win98 in order to get past this.
Installer (Setup32) then checks to see if any WPO programs are running and
offers to close them for you. The only WPO program it finds running is itself
! If you choose No, it exits anyway. If you choose Yes, it commits suicide.
Unable to progress further.
The console log is very short:
$ wine 'f:\intro.exe'
fixme:advapi:LookupAccountNameW (null) L"allusers" (nil) 0x33e4a0 (nil)
0x33e4a4 0x33e498 - stub
fixme:advapi:LookupAccountNameW (null) L"allusers" 0x12da00 0x33e4a0 0x12d768
0x33e4a4 0x33e498 - stub
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"SetODBCFolders"
fixme:msi:msi_unimplemented_action_stub BindImage -> 3 ignored L"BindImage"
table values
fixme:msiexec:main Unknown parameter /D
fixme:msiexec:main Unknown function, ignoring
Successfully registered dll L"C:\\windows\\system32\\msi.dll"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14327
Summary: Warcraft version refused when connecting to battle.net
under metacity
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johan.martenson(a)gmail.com
With 1.1.0, Warcraft II is unable to connect to Battle.net for multiplayer, and
gives an error that reads: "Battle.net was unable to properly identify your
application version." This bug is different from #13815 in that it still
happens when I'm running metacity instead of compiz.
--
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=14214
Summary: Jumpgate: The Reconstruction Initiative, crashes on
start.
Product: Wine
Version: 1.1.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Makitk(a)gmail.com
Created an attachment (id=14501)
--> (http://bugs.winehq.org/attachment.cgi?id=14501)
Crashlog of Wine 1.1.0 running JumpGate.
On Kubuntu 8.04, after the patching process and the movie, JumpGate simply
crashes.
See crashlog for details.
--
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=14189
Summary: Civilization VI: install failure
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leecleveland(a)comcast.net
Created an attachment (id=14458)
--> (http://bugs.winehq.org/attachment.cgi?id=14458)
error lines output to the terminal
Civilization VI will not install under WINE.
This game is the first, and may be the only, Windows application attempted on
this system.
WINE is configured with E: = /media/cdrom. Everything else is at it's default
setting.
The first install attempt from the CD, "/media/cdrom$ wine autorun.exe", failed
immediately, outputing multiple instances of the errors:
preloader: Warning: failed to reserve range 00000000-60000000
and
err:dosmem:setup_dos_mem Cannot use first megabyte for DOS address space,
please report
I edited /etc/sysctl.conf, changing the line
vm.mmap_min_addr = 65536
to
vm.mmap_min_addr = 0
The next install attempt got as far as opening the installer but not much
farther. It failed with the error
\\InstallShield\\Professional\\RunTime\\IsProBE.tlb" failed with error 2
followed by many "fixme" lines and some "err" lines (see attachment).
I'm running WINE 0.9.59 on Ubuntu 8.4 (64-bit AMD) with 1GB RAM and Nvidia 6200
card.
--
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=14007
Summary: Can't login -- Invalid Password
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://appdb.winehq.org/appimage.php?bThumbnail=true&iId
=14942
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ragai(a)avaarsani.ca
I tried D-Link's IPSurveillance (versions 3.0 and 3.2) under Wine 0.9.51,
1.0RC5 and 1.0 under UBUNTU (7.10 & 8.04). It always installed without any
error messages. I must enter a password during the installation. I can see the
application running. I can see its icon in the task bar. However, when I try to
lunch the application nothing happens. Just the hourglass and then nothing.
When I try to lunch it the second time I get the login window. I always get the
"Invalid password" error message.
I do not know how to trace/debug this issue as I am new to Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13747
Summary: Heroes Chronicles: Conquest of the Underworld - Crash on
run
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)alex-elliott.co.uk
Created an attachment (id=13785)
--> (http://bugs.winehq.org/attachment.cgi?id=13785)
dump/backtrace on run
When running Heroes Chronicles: Conquest of the Underworld after installation
it crashes on the "loading" splash.
Just attempting to run the executable gives this result "wine
~/.wine/drive_c/Program\ Files/3DO/Heroes\ Chronicles/Conquest\ of\ the\
Underworld/UNDERWORLD.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=13739
Summary: Fonts in some games are displayed incorrectly if I am
using Ubuntu 8.04
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Zenitur(a)yandex.ru
I have myself-compiled Wine from source using WineOn64 wiki. When I play
.kkrieger, fonts are incorrectly. If I try do this on myself-compiled Wine from
Ubuntu 7.10, they looks like in Windows.
--
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=13735
Summary: Microsoft Publisher 98 will not start
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marius.scurtescu(a)gmail.com
Created an attachment (id=13763)
--> (http://bugs.winehq.org/attachment.cgi?id=13763)
Screenshot of startup error
When starting from command line seeing the following error:
~/.wine/drive_c/Program Files/Microsoft Office/Office$ wine MSPUB.EXE
fixme:storage:StgCreateDocfile Transacted mode not implemented.
fixme:font:WineEngRemoveFontResourceEx :stub
See attachment for screenshot of error message at startup.
--
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=13710
Summary: emule adunanza crash with a pagefault
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gine(a)debord.ortiche.net
Created an attachment (id=13726)
--> (http://bugs.winehq.org/attachment.cgi?id=13726)
backtrace printed on the shell
i lunch this program and leave it in other desktop. sometimes i look how i have
downloaded but every time it is 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=13609
Summary: wine crashes with page-fault on starting Majesty Gold
(dogfood?)
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tet_wine(a)gmx.com
Created an attachment (id=13573)
--> (http://bugs.winehq.org/attachment.cgi?id=13573)
Console output of starting majesty
Wine is crashing on startup of Majesty Gold. It is playing the sounds of the
intro videos, then showing the "loading"-Screen and then crashing.
There's a bugreport 13250 for rc2 wich says this issue is fixed for rc2 (din't
tried rc2). Under rc3 it's still crashing.
I tried running in Win95, Win98, Win ME and WinXP mode, with everytime the same
results.
System: Kubuntu Hardy, I used the wine binary package
(1.0~rc3~winehq0~ubuntu~8.04-1) from http://wine.budgetdedicated.com/
--
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=13604
Summary: Rome Total War 1.5: Disappearing and breaking menu
options
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tjlyon(a)gmail.com
Certain menu options disappear when navigating the menus. Specifically, the
single player "Historical Battles" and "Provincial Campaign" options disappear.
When this happens, it causes another strange behavior. Selecting "Prologue" or
"Imperial Campaign" does not work. Instead, the message "Please select an item
from the list" pops up. After this, I cannot start any single player campaign
until I quit the game and restart it.
To further confuse things, sometimes this message comes up without the
aforementioned menu options disappearing.
To reproduce, select "Single Player", then select either "Imperial Campaign" or
"Historical Battle", then click the icon to return to the previous screen.
Repeat selecting "Imperial Campaign" or "Historical Battle" and returning to
the previous screen until finally the historical and provincial options
disappear.
I've also noticed that if I reproduce this bug by repeatedly selecting the
historical battle option, the final time I enter that screen before the option
disappears, the list of historical battles is empty.
--
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=13433
Summary: Zombie Panic HL2 mod crashes randomly
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: megalexis(a)gmail.com
Game randomly crashes with:
MS C++ error
Runtime Error!
Program...files\steam\steamapps\XXXXX\source SDK base\Hl2.exe
R6025
- Pure Vital function call
--
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=13169
Summary: Winbox doesn't work with wine 0.9.24 or later
Product: Wine
Version: unspecified
Platform: All
URL: http://www.mikrotik.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joelp(a)email.cz
Winbox, administrating tool for RouterOS ( http://www.mikrotik.com/ ) doesn't
work with wine 0.9.24 or later. While winbox downloading informations about
system where I'm logged, wine stoped work (winbox). Last workable version is
0.9.23. Same problem is on 32bit also 64bit Linux.
My OS is Mandriva Linux 2008.1 (64bit), but it doesn't work also on oldest
versions.
--
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=13059
Summary: DreamMaker: Icon Editor arrow buttons do not appear.
Product: Wine
Version: 0.9.61.
Platform: Other
URL: http://byond.com/download
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris062689(a)gmail.com
The buttons themselves do function properly, the arrow keys just do not appear
on them, perhaps due to a unsupported font?
--
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=11781
Summary: No screen refresh on application with tabs
Product: WineHQ Bugzilla
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: torsten.schulle(a)ksk-stendal.de
Hi,
i have an issue like the old bug (1689). A special application has tabs to
navigate between screens (like the tabs on certain Excel or OpenCalc).
If I start the application all work fine on the first mask, but if I click on
the second or third tab only the field where the cursor is blinking are
refreshed. The rest of the screen shows the the first mask.
If I minimize and restore the application the complete screen is correct.
I test the application with all wine versions from 0.9.44 through 0.9.56 and
some older versions, but I have no luck.
I test also with native comctl32 and comdlg32 also with no luck-
I think that is a problem with the winex11.drv system.
I hope anybody can solve this problem
Torsten
--
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=14608
Summary: Warhammer Online Beta - Will not run patch util
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agentc0re(a)gmail.com
This is my first time trying to trouble shoot a program in wine that will not
run. I've fixed a few things before coming here. They where microsoft common
controls(created a .manifest file in the prog dir), added winhttp.dll to the
windows/system32 dir and last had to regsvr32 advapi32.dll. I can't seem to
figure out the other errors and i'm not even sure if their whats holding up the
program from running. here's my pastebin of the errors.
http://pastebin.ca/1080346
Pastbin of the manifest file
http://pastebin.ca/1080359
I called that file Microsoft.Windows.Common-Controls.manifest
For reference, here are the errors i was receiving when i first started.
http://pastebin.ca/1080361
i will attach as files as well.
uname -a
Linux nova 2.6.21.5-smp #2 SMP Sun Mar 16 22:01:24 MDT 2008 i686 Intel(R)
Core(TM)2 Duo CPU E6750 @ 2.66GHz GenuineIntel GNU/Linux
Slackware 12.0
--
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=13264
Summary: Warblade Demo: crashes on startup, maybe regression
Product: Wine
Version: 1.0-rc1
Platform: PC-x86-64
URL: http://www.warblade.as/warblade_demo.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastian.friedel(a)s2005.tu-chemnitz.de
Created an attachment (id=13110)
--> (http://bugs.winehq.org/attachment.cgi?id=13110)
console output of the crash
When I try to start the Warblade Demo in either DirectX or OpenGL mode it
crashed right after the selection. The AppDB page tells nothing about crashes,
only about corrupted sound and slow graphics, so this may be a regression but I
cannot confirm that as it never worked on my machine.
I'm testing on Ubuntu 8.04 x86_64 with kernel 2.6.24-17-generic and using
wine-0.9.61 from wine.budgetdedicated.com repository.
--
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=11859
Summary: Greek keyboard layout does not work under KDE
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
With KDE 3.5.x, if I switch the keyboard layout the Greek, then many keys on
the keyboard do not work. i.e. the entire bottom row - Z through M do not work.
I tried with notepad and Picasa on KDE 3.5.6, Greek locale, Greek keyboard
layout. Locale says:
LANG=el_GR.UTF-8
LANGUAGE=el_GR.UTF-8
LC_CTYPE="el_GR.UTF-8"
LC_NUMERIC="el_GR.UTF-8"
LC_TIME="el_GR.UTF-8"
LC_COLLATE="el_GR.UTF-8"
LC_MONETARY="el_GR.UTF-8"
LC_MESSAGES="el_GR.UTF-8"
LC_PAPER="el_GR.UTF-8"
LC_NAME="el_GR.UTF-8"
LC_ADDRESS="el_GR.UTF-8"
LC_TELEPHONE="el_GR.UTF-8"
LC_MEASUREMENT="el_GR.UTF-8"
LC_IDENTIFICATION="el_GR.UTF-8"
LC_ALL=
--
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=15810
Summary: New shell folder icons look poor in small size
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: juan_lang(a)yahoo.com
Created an attachment (id=16933)
--> (http://bugs.winehq.org/attachment.cgi?id=16933)
Screenshot
The automatic creation of the folder icons from their SVG source leaves a bit
to be desired. The ones introduced in commits
ed2c8669f0e131791bca22ee122c156f85382b87 and
51f3e69120caf133becb122fc48c9414d83222d4 have pretty bad visual artifacts.
The folder icon appears clipped at the bottom edge, while the open folder icon
is heavily aliased.
Both can be seen in the standard file open dialog from any program. I've
attached a screenshot from notepad.
--
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=15529
Summary: .debris hangs shortly after starting
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.gebert(a)gmail.com
Created an attachment (id=16489)
--> (http://bugs.winehq.org/attachment.cgi?id=16489)
Hung shortly after the loading screen
I ran this once and ended up with long stack trace that said this as the final
message:
Backtrace:
XIO: fatal IO error 12 (Cannot allocate memory) on X server ":0.0"
after 2041 requests (2039 known processed) with 0 events remaining.
I ran it again and saved the complete trace in the attached file.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15464
Summary: Panzer General 3D Demo: Selected units cause screen
corruption
Product: Wine
Version: 1.1.5
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
The selected unit's possible movement is drawn incorrectly. De-selecting the
unit causes the correct output to be shown.
--
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=14406
Summary: Goldwave loaded mp3 file is corrupted
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: billstei(a)hbci.com
Created an attachment (id=14718)
--> (http://bugs.winehq.org/attachment.cgi?id=14718)
Corrupted mp3 example image
The program GoldWave version 5.25 from here: http://www.goldwave.com
When loading mp3 files (especially when large >20 meg) corrupts them and the
following message occurs on standard out:
fixme:mpeg3:MPEG3_StreamSize misses the block header overhead
Please see the attached image of an example mp3 audio clip as loaded into
GoldWave compared to the same clip which was loaded into Audacity audio editor
and exported to wav, and that wav then loaded into GoldWave. The mp3 is
corrupted in 3 places (within the first second of time -- actual number of
corruptions is hundreds/thousands of occurences) in the example as compared to
the wav file. These distortions are very audible so when testing they can be
easily located simply by listening and then zooming in to the affected area
(turning down the volume to amplifier and speakers is advised).
--
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=13834
Summary: Heroes 3 crash regression
Product: Wine
Version: 1.0-rc4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: afffect(a)gmail.com
Created an attachment (id=13888)
--> (http://bugs.winehq.org/attachment.cgi?id=13888)
crash log
When playing Heroes 3 in wine rc4 the game crashes frequently, see attachment.
That's a regression, crash doesnt happen in wine .54
--
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=13631
Summary: Unhandled page fault in winefile after pressing F5
Product: Wine
Version: unspecified
Platform: Other
URL: http://akolacz.googlepages.com/RivChat2-setup.exe
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: desowin(a)gmail.com
Created an attachment (id=13614)
--> (http://bugs.winehq.org/attachment.cgi?id=13614)
unhandled page fault in winefile
Howto reproduce:
-Open RivChat (on two difefrent machines)
-transfer any file using RivChat
-when file transfer finishes, RivChat opens folder with downloads
-press F5 in winefile window
-wait for 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=13303
Summary: Frasse and the Peas of Kejick does not run after using
the .exe installer
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://trumgottist.com/frasseinstaller.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Created an attachment (id=13160)
--> (http://bugs.winehq.org/attachment.cgi?id=13160)
screenshot of error
When using the .exe installer for Frasse and the Peas of Kejick, the install
process appears to succeed, but the game pops up the following error instead of
starting:
SLUDGE v1.6 startup error!
Can't open file c:windowsprofilesmehApplicationDataFrasse and the Peas of
KejickFrasse.slg
[OK]
The web site also includes a .zip file of the game, which runs 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=12682
Summary: Outlook Express does not run
Product: Wine
Version: 0.9.59.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
Created an attachment (id=12343)
--> (http://bugs.winehq.org/attachment.cgi?id=12343)
console log
Outlook Express after installation does not run. It gives some error messages
and stops. The console output in in the attachment.
This may be because the installation does not complete. It does not create any
new menu entries. This is probably related to bug
http://bugs.winehq.org/show_bug.cgi?id=12681
--
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=12248
Summary: Ufo Aftermath cursor issue: starting from version 0.9.44
the cursor is invisible ingame
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=1961
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: razahel(a)gmx.net
UFO Aftermath and probably UFO Afterlight bug
I tested the game against different versions of wine and found that starting
from Version 0.9.44 the cursor is invisible ingame which makes the game quite
unplayable.
I tested against my source builds of versions 0.9.43 .44 .48 .56 .57 .58
In Version .43 the game runs well in later versions there are performance and
sound enhancements but the cursor is 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=11477
Summary: Resident Evil 3, Polygonal characters are invisible
Product: Wine
Version: 0.9.54.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kd7tck(a)msn.com
All characters in game are invisible. No system crashes ever occurred,
everything else worked just 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=10964
Summary: Prince of Persia The two Thrones: Upside is down if some
text appears on the screen
Product: Wine
Version: 0.9.51.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lfarkas(a)math.bme.hu
I've tried PoP T2T and works almost perfectly: shows intro, the game start, and
I can play with iy - however it must be start in safe mode. Almost perfectly,
except the screen is upside down if some text, lifebar, or other icons appear
on the screen.
I've tried with the latest version 0.9.51 too, upside down remains, but in this
version the texts, and cursor doesn't appear at all - so i cannot start the
game.
--
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=10749
Summary: AVP2 rendering extremely slow (drawPrimitive using
software emulation)
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexd4(a)inbox.lv
Created an attachment (id=9590)
--> (http://bugs.winehq.org/attachment.cgi?id=9590)
hack to improve performance greatly
Aliens vs Predator 2 game (DirectX8, I think) is slower in wine by a factor of
5-10 at least, often giving seemingly just a few fps even on lowest settings
whereas on windows it runs great on highest settings. Basically unusable.
The cause is certainly this:
fixme:d3d_draw:drawPrimitive Using software emulation because manual fog
coordinates are provided
I'm sure because a hack that disabled this software emulation makes the game
run in much more acceptable speed. I'm at the moment unaware what side effects
it causes, but the game looks mostly allright with it (I didn't manage to go
beyond the very first room though because of mouse input bug).
--
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=9338
Summary: Pro evolution soccer 5 displays in the left of the
screen only
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.fileshack.com/file.x/7664/Pro+Evolution+Socce
r+5+Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
To see the bug, the demo must be played with sound disabled in winecfg
(otherwise it crashes).
But the game displays in the left of the screen only. I attached a screenshot
and the console output.
Joaopa
--
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=9269
Summary: Psychonauts has misplaced / upside down textures /
shadows
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://appdb.winehq.org/appview.php?iVersionId=4384
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vitaliy(a)kievinfo.com
Created an attachment (id=7523)
--> (http://bugs.winehq.org/attachment.cgi?id=7523)
Upside down shadow
Most areas of the game (except menu) has misplaced textures. Some looks like
upside down shadows. Some like transparent objects.
Attached are the few examples of the bug.
--
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=11867
Summary: StackOverflowException from mscorwks running .NET 2
application
Product: Wine
Version: 0.9.56.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: htl10(a)users.sourceforge.net
Created an attachment (id=11155)
--> (http://bugs.winehq.org/attachment.cgi?id=11155)
+relay log, gzip'ed
I got a stackoverflow exception running a .NET 2 application with native .net
framework. Apology the application is proprietary, but I'll attach +relay
trace...
If I understand the trace correctly, there seems to be a lot of
kernel32.getlasterror and that's probably how the stack overflow?
--
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=12933
Summary: open Steam window consume 100% cpu
Product: Wine
Version: 0.9.61.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmiceman(a)ubiz.ru
Mostly (not always) open window of Steam.exe cause full processor load. When
window closed to the tray — everything is fine. Sometimes, opening it again
are ok too — processor is idle.
Seems to be a regression from a versions about 0.9.3x — as i can remember,
there was no such problem with old versions (but of course, there was other
problems with 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=12081
Summary: Error log and system.reg from Microsoft Streets & Trips
2006 install
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rick2210(a)earthlink.net
Created an attachment (id=11462)
--> (http://bugs.winehq.org/attachment.cgi?id=11462)
Installation errors and system.reg file after install
Microsoft Streets and Trips 2006 will not install. Executing 'wine 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=12937
Summary: Dreamweaver CS3 CPU Usage skyrockets
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frank(a)splra.org
I recently installed Adobe Dreamweaver CS3 and any time that a menu is not
dropped down the cpu usage on both of my cores skyrockets. This is not an
isolated problem as I have read others say the same thing. I installed it by
using the guide located at
http://appdb.winehq.org/objectManager.php?sClass=version&iId=7694
It seems to work fine other than the cpu usage issue.
--
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=12930
Summary: Trusted storage failed to initialize
Product: Wine
Version: 0.9.60
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yolande(a)haneder.biz
This bug appeared in Wine 0.9.60 preventing the installation of the licensing
utility (Flexnet), still existing in 0.9.51 with all other components
(including Java and .NET) of Trados installing fine and very obvious progresses
in the field of assemblies registrations.
One difference with the previous versions was that when you had this installed
and you were starting Wine server, you had for a few seconds a black (dos)
screen where flexnet was initializing. Now this black screen is not happening
anymore.
I will do a regression test in the course of the week-end.
--
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=12809
Summary: Dreamwawer crash. err:module:attach_process_dlls
"odbc32.dll" failed to initialize, aborting
Product: Wine
Version: 0.9.60
Platform: PC-x86-64
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: qbox2xxx(a)gmail.com
user@user:~$ wine /home/qbox/.wine/drive_c/Program\
Files/Macromedia/Dreamweaver\ 8/Dreamweaver.exe
err:module:attach_process_dlls "odbc32.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Macromedia\\Dreamweaver 8\\Dreamweaver.exe" failed, status c0000005
user@user:~$
--
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=12462
Summary: Error in RichEdit component text representation at
lingvo installation
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tkachenkok(a)gmx.de
Created an attachment (id=12004)
--> (http://bugs.winehq.org/attachment.cgi?id=12004)
Error in RichEdit text representation
During the installation of the Lingvo 12 (2 cds) there is an error in the
richedit component viewing the end user license. You can see it on the screen
shot.
Short description:
- there is no horizontal bar and I cannot see the whole paragraphs
-
I cannot install lingvo 12 (see bug
http://bugs.winehq.org/show_bug.cgi?id=12346) and I tried to use the native
Windows XP dlls. I've added msi.dll, then ole32.dll and this error was still
there. But when I added the native oleaut32.dll, the error was not there any
more.
--
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=12383
Summary: MPEG-video problem
Product: Wine
Version: 0.9.58.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elias.julkunen(a)gmail.com
Created an attachment (id=11882)
--> (http://bugs.winehq.org/attachment.cgi?id=11882)
Command line output when I run the software
Hi!
I tried to run a software which is called "Hyperdata Report". It works mostly
well, but MPEG-video feature doesn't work at all.
--
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=12189
Summary: complex shader causes flora to dissapear in Everquest 2
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djdunn.safety(a)gmail.com
CPU: AMD Athlon(tm) XP 3000+
Ram 2 gigs
NVIDIA UNIX x86 Kernel Module 169.09
geforce fx 6800 video card
When the complex shader in Everquest 2 is enabled it causes the flora to
disappear.
--
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=12163
Summary: Getting error while loading Corel Draw 12
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neel.hjs(a)gmail.com
Created an attachment (id=11560)
--> (http://bugs.winehq.org/attachment.cgi?id=11560)
Corell 12 installation logs
Linux Distro & Ver: Fedora 7
Wine Ver : 0.9.56
Corel Draw 12
Hi I could install Corel Grafix Suit 12 on Linux with the help of Wine.
But when I start Corel Draw I get following Error :
Registry Curropt : The UI Language Registration List is Invalid.
So I checked Registry.
I found below given entry in HKEY_LOCAL_MACHINE --> Software --> Corel -->
CorelDraw --> 12.0 --> LangResourceDir
"c:\Program Files\Corel\Corel Graphics 12\Languages\<LANG>\Programs"
So I checked c:\Program Files\Corel\Corel Graphics 12\Languages\EN\
I found that there is no Programs folder. Then I compared content same
Directory path on Windows PC where Corel 12 is installed and working. I found
that there are some files and folders under "EN" directory. So I coppied EN
directory from that PC to Linux PC in Same path and restarted wine and did
wineboot but no luck getting same error.
I have attached installation logs.
Thanks
Neelesh
--
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=12031
Summary: scambled fonts (encoding?) with .NET 2 application
Product: Wine
Version: 0.9.57.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: htl10(a)users.sourceforge.net
Created an attachment (id=11370)
--> (http://bugs.winehq.org/attachment.cgi?id=11370)
screenshot
I tried both the as-shipped fonts and copied over Vista's fonts,
the result are both scrambled. It seems that .NET uses fonts differently.
This is a spin-off bug I am filing trying to run a specific application.
Screenshot to follow. Some text (in other part of the application, not shown)
are not gabbled - also,
the tooltip text over this part (the text is just numbers, and when the windows
is a bit small, it shows mouse-over tooltips with the same text, which are
mostly just numbers and displayed in the mouse-over tooltips correctly.
--
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=11877
Summary: wine 0.9.56 can not install Oracle
Product: WineHQ Bugzilla
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pjumpod(a)celestica.com
wine 0.9.56 can not install Oracle.
it can not lunch GUI installer.
--
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=11771
Summary: Mathematica 5.1, crash on bad mathematical expressions.
Product: Wine
Version: 0.9.55.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jacobidiego(a)gmail.com
Hello.
I have previously filed a bug about Mathematica not being able to install:
URL: http://bugs.winehq.org/show_bug.cgi?id=11725
And this same bug in one report which will be marked as invalid:
http://bugs.winehq.org/show_bug.cgi?id=11765
The error of this report is:
- Writing wrong Mathematical expressions which will lead to errors makes it
crash.
It is too often that expression will output errors like: "expression does not
converge", or "function can not be evaluated on x=...", or mathematical things
like that. So if after only one error, Mathematica crashes then it is not
usable.
Test with: f[x_]=x+3-
The last "-" sign must be followed by another expression. So this has to output
an error without crashing.
It also crashed when you write a clossing sign ")" before an openning sign "("
(maybe because one is trying to fix a line).
Wine debug outputs of this is on the first attached file.
Mathematica reproduces a "chord" sound on each error which is not reproduce by
wine before crashing.
Also there is a non windows Mathematica console. It is Math.exe on the same
dirs as Mathematica.exe
It seems like it does work well:
Testing with wrong expression does not lead to any results and Mathe.exe
doesn't take it as an input.
Other expressions like:
f[x_]=1/x
f[0]
Does shows respective errors of complex infinite value.
No Plotting available.
No help browser available
No easy copy&pasting editor.
All this errors were tested on ubuntu 7.10 AMD64 and with wine 0.9.55 (becouse
.56 is not available yet for ubuntu on your repos) and with all builtin dlls,
but also some natives does the same results.
It is only one of other errors of Mathematica.
I couldnt upload the logs here, so i uploaded it to esnips. Freely
doenloadable.
http://www.esnips.com/doc/b78736e6-776f-432c-bd58-ec671da40df7/mathematica_…http://www.esnips.com/doc/1f2d4af6-da13-42f7-91be-71b22278d4d5/mathematica_…
Cheers.
Diego
--
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=11605
Summary: Pinnacle Studio 9 crashed when start
Product: Wine
Version: 0.9.54.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pali.rohar(a)gmail.com
Created an attachment (id=10810)
--> (http://bugs.winehq.org/attachment.cgi?id=10810)
Log of crashed application studio.exe
I successful install Pinnacle Studio 9.
Before installing i must download msvcirt.dll ltkrn13n.dll ltfil13n.dll from
www.dll-files.com to C:\Windows\System32\
I start Pinnacle Studio 9: C:\Program Files\Pinnacle\Studio
9\programs\studio.exe
It show pinnacle logo and wine 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=10930
Summary: RF Online crashes on start with 'INTERNET_OPTION' errors
Product: Wine
Version: 0.9.52.
Platform: PC
URL: http://www.rf-onlinegame.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: febaen(a)gmail.com
Created an attachment (id=9854)
--> (http://bugs.winehq.org/attachment.cgi?id=9854)
Output from running "wine RF.exe".
When starting RF.exe, game does not show launcher, just a few different
fixme:wininet:InternetSetOptionW lines before crashing.
--
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=10534
Summary: Microsoft QuickBasic: winevdm.exe stays in memory
Product: Wine
Version: 0.9.49.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bammzilla(a)gabriana.com
Clicking on a .BAS file associated with Microsoft QuickBasic does nothing.
After this winevdm.exe stays in memory until killed using KDE System Guard.
If the .BAS file is clicked many times hoping for a response, it can result in
multiple instances of winevdm.exe in memory.
--
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=10344
Summary: Robot Wars: Arenas of Destruction intro .avi fails to
play
Product: Wine
Version: 0.9.48.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: echidnaman(a)gmail.com
Created an attachment (id=9011)
--> (http://bugs.winehq.org/attachment.cgi?id=9011)
Error log
The intro movie for Robot Wars: Arenas of Destruction fails to play on
application startup.
It is supposed to play after the splash screen that says "Robot Wars", but it
doesn't. Instead, the application skips to the main menu. Hardly a bug that I
would want fixed desperately, but a bug all the same.
Error log attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9956
Summary: Cant install Aquanox 2
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
The Setup breaks at some point claiming that the cd is damaged or not original.
output from console:
fixme:cdrom:CDROM_DeviceIoControl Unsupported IOCTL 2d1400 (type=2d access=0
func=500 meth=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=9884
Summary: objects not displayed correctly
Product: Wine
Version: 0.9.46.
Platform: PC
URL: http://en.wikipedia.org/wiki/Urban_Runner
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sacrediou(a)yahoo.fr
Created an attachment (id=8377)
--> (http://bugs.winehq.org/attachment.cgi?id=8377)
example of an object not displayed correctly
When consulting the inventory, objects are not displayed correctly (using the
magnifying glass).
Note : we can see some transparency between the object and the background game.
--
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=9757
Summary: Attachmate KEA! starts with error, then hangs
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: posting(a)vodacomm.ca
Created an attachment (id=8184)
--> (http://bugs.winehq.org/attachment.cgi?id=8184)
shell error output
Attachmate's KEA! VT420 emulator used to work in Wine (back in 2000 :) ). The
current version of KEA! is 5.1.
It installs, and I can start it; when I choose a connection profile, it opens a
terminal window and throws an error dialog box:
"OLE - error creating server class factory: error code 0x800706c0"
I can click okay, and sometimes it connects to the remote host, and sometimes
not, but in all cases it freezes, so that I have to kill Wine to get out.
The shell error output is attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9486
Summary: Undandled exception in Skipper and Skeeto
Product: Wine
Version: 0.9.44.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bjwebb67(a)gmail.com
Created an attachment (id=7827)
--> (http://bugs.winehq.org/attachment.cgi?id=7827)
Output onto command line
Trying to run Skipper and Skeeto under wine fails with an unhandled exception.
--
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=9380
Summary: Grand Prix Legends: heavy randomic slowdown at 800x600
resolution or higher
Product: Wine
Version: 0.9.43.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xwang1976(a)email.it
When I start Grand Prix Legends 2004 Demo at 640x480, the game runs fluently at
36 fps like it does under windows, but if I change the resolution at 800x600 or
higher, it runs at about 1 fps and at the same moment the cpu usage goes to
100% (at 640x480 is at 20-25% maximum). This happens in a randomic way because
sometimes it switch correctly to the higher resolution and in that case it runs
fluently even at 800x600 (I've seen this case in 3 or 4 cases over more than 30
times I tried to switch to this resolution). However I've never been able to
run at 1024x768 as I normally do under windows.
--
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=9379
Summary: Company of Heroes does not detect DirectX
Product: Wine
Version: 0.9.43.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: harrisonchen(a)gmail.com
When I try to start company of heroes, it gives me an error in a dialog box
that says it cannot find the proper hardware drivers or DirectX.
I've attached a screenshot of the error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13101
Summary: GLXDabDrawable when antialias ON
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: guilo19(a)free.fr
When I want to start a game with wine 1.0rc1 (the problem occurs with
olderversions) it crashes with glxbaddrawable error unless antialias is set to
off in nvidia panel.
guilo@linux:/windows/Stockage/Jeux/World of Warcraft$ wine wow
fixme:ntoskrnl:KeInitializeSpinLock 0x4577a4
fixme:advapi:SetSecurityInfo stub
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:win:EnumDisplayDevicesW ((null),0,0x33ed84,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33ec74,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f2a8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f40c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f588,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f580,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f508,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f4f8,0x00000000), stub!
X Error of failed request: GLXBadDrawable
Major opcode of failed request: 144 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 586
Current serial number in output stream: 586
libxcb: WARNING! Program tries to lock an already locked connection,
which indicates a programming error.
There will be no further warnings about this issue.
--
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=15772
Summary: Victoria: An Empire Under The Sun: Crashes on loading
screen
Product: Wine
Version: 1.1.7
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frank(a)d-rox.de
Created an attachment (id=16872)
--> (http://bugs.winehq.org/attachment.cgi?id=16872)
errorlog
Crashes while "loading graphics", sound already plays during loading screen,
and intro movie plays normally.
--
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=14795
Summary: amsn errors on startup
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://prdownloads.sourceforge.net/amsn/aMSN-0.97.2-
tcl85-windows-installer.exe
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffzaroyko(a)gmail.com
Attempting to start amsn results in a 'domain error' where a value is said to
be out of range while executing "expr { 1.0*$origw / $origh } " procedure
::picture::ResizeWithRatio invoked from within ::picture::ResizeWithRatio
displaypicture_not_self 50 50"
--
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=14558
Summary: DirectX : Missing sprite frames in Double Dragon Forever
Product: Wine
Version: 1.1.1
Platform: PC-x86-64
URL: http://clebercasali.blogspot.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cleberdemattoscasali-hotpop(a)yahoo.com.br
Wine's DirectX fails to draw some frames from the sprites. For example, when
the character is walking, the animation does not display and the character
looks static.
I think this problem started with wine 1.1.1.
It may be related to this bug: http://bugs.winehq.org/show_bug.cgi?id=13595
wich is also still present in 1.1.1.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13976
Summary: Axis&Allies crashes after a long time of game-play ~1
hour
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: torgeriedel(a)web.de
Created an attachment (id=14152)
--> (http://bugs.winehq.org/attachment.cgi?id=14152)
The log of the crash
Axis&Allies played a long time and then crashes. See 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=12611
Summary: Warcraft III world editor page faults when switching
desktop.
Product: Wine
Version: 0.9.59.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vexorian(a)gmail.com
Created an attachment (id=12237)
--> (http://bugs.winehq.org/attachment.cgi?id=12237)
output when running it from console.
I was able to reproduce what seems to be the most important crash bug related
to Warcraft III world editor since it looks like it is the one that happens
most frequently, as a matter of fact, once I learned how to avoided I was able
to run world editor for a long amount of time.
To reproduce the bug;
- gnome, metacity 2.18.
- Warcraft III 1.21 or 1.22
- Run worldeditor (after version 1.21 CD is not necessary anymore
- Once it opens, switch to another virtual desktop, then switch back to the one
where the world editor windows are present, and make world editor active again.
It will page fault.
--
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=10406
Summary: Missing surface textures in Titan Quest game v.1.3
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: juergenw_(a)web.de
Several surface textures are missing in this game, probably due to the below
mentioned bug:
wine err:d3d_surface:surface_prepare_system_memory Surface without memory or
pbo has SFLAG_INSYSMEM set!
I have created a .jpg to visualize this bug.
The bug was not shown in the err log proir to wine version 0.9.49 but the
surfaces were missing anyway.
My system:
Athlon64 3800+ with kernel-2.6.23 / xorg-1.3
Geforce 7600GT with latest Nvidia driver version 100.14.23
2GB sys mem
--
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=14388
Summary: Half-Life (Steam) crash with acpi=on
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wiltave(a)zipmail.com.br
If acpi=on Half-Life have a total crash, with acpi=off, i can play normal...
--
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=14082
Summary: Anarchy Online "Unable to save settings".
Product: Wine
Version: 1.0.0
Platform: PC-x86-64
URL: http://www.anarchy-online.com/wsp/anarchy/frontend.cgi?func=frontend.show&t
emplate=main
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ben(a)atomnet.co.uk
Created an attachment (id=14303)
--> (http://bugs.winehq.org/attachment.cgi?id=14303)
Screenshot of the Error Window
When you install the game and try to run it it will not save your settings and
will keep giving you errors about not being able to save your settings and to
check your permissions. Linux ownerships/write setting are fine so Wine seems
to be creating a bug somewhere along the lines.
Nothing in the terminal at all.
Creating a folder named "prefs" in the game's own folder fixes the problem so
it looks like Wine isn't creating the folder when the game asks it to (thus it
can't create the prefs file inside 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=12536
Summary: Dawn of War Installer doesnt ask for CD key
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: natoforce(a)gmx.net
The Warhammer 40k Dawn of War installer does not ask when using latest git
(fresh .wine folder) for the CD key nor creates any reg keys after the
installation is finished, if i copy the reg keys manually to wine registry
after i exported them
from windows i can play online.
The Installer simply starts copying the files.
--
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=11938
Summary: Valve Hammer Editor unusable: window mostly black
Product: Wine
Version: 0.9.57.
Platform: PC
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=11240)
--> (http://bugs.winehq.org/attachment.cgi?id=11240)
Camera view of a new level being drawn blatting everything else
As soon as I create or open a map (i.e. show any views of a map, even if
they're all 2D), Hammer's window appears mostly black, with one map view drawn
near the top left. The menu bar appears intact since 0.9.57. If I mouse over
the positions of some buttons in the toolbars, they are drawn. As soon as I
mouse over a view of the map, that view is drawn near the top left of the
window and the rest of the window turns black. Screenshots to be attached.
This was originally linked to bug 2398, but 0.9.57 fixes that and I still have
this problem. From comment 213 of bug 2398:
"According to Stefan Dosinger, Valve Hammer has a different kind of problem. It
renders to an oversized backbuffer and copies portions of it back to the main
window. So it is something else."
--
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=11435
Summary: Asheron's Call: ACLauncher.exe crashes on load
Product: Wine
Version: 0.9.54.
Platform: PC
URL: http://trial.ac.turbine.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fyrie.windwalker(a)gmail.com
ACLauncher.exe crashed upon load with wine.i386 0.9.54-1.fc8 from fedora
testing repo. The game runs great under 0.9.52-1.fc8. I've attached the console
output.
--
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=12233
Summary: Jaman player complains "Debugger detected"
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://jaman.com
OS/Version: other
Status: NEW
Keywords: download, Installer, NoAppDBEntry
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The jaman player has to be coaxed past bug 12221 and bug 12222
by installing
http://appldnld.apple.com.edgesuite.net/content.info.apple.com/QuickTime/06…
first and by either unpacking manually or applying the
kludge patch in bug 12222. You can then try starting
the app. After a couple seconds, it puts up a dialog
saying "Debugger detected". Presumably it refuses to
function as a 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.
http://bugs.winehq.org/show_bug.cgi?id=12222
Summary: msiexec unhappy if invoked without argv[0]
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://jaman.com
OS/Version: other
Status: NEW
Keywords: download, Installer, NoAppDBEntry, patch
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The Jaman Player has
To reproduce, first work around bug 12221 by executing
http://appldnld.apple.com.edgesuite.net/content.info.apple.com/QuickTime/06…
Then run the installer:
wine jaman-installer.exe
This fails with a usage message from msiexec. It seems that msiexec
is expecting GetCommandlineW to return a commandline starting with the
executable
name, but instead it gets one that starts with a space and then /i etc.
The /i is skipped (since msiexec is expecting argv[0] in that slot).
That sounds like the problem described here:
http://blogs.msdn.com/oldnewthing/archive/2006/05/15/597984.aspx
The process is created with
0009:Call KERNEL32.CreateProcessA(00140bb8
"C:\\windows\\system32\\msiexec.exe",00143600 " /i
\"C:\\windows\\profiles\\dkegel\\Application Data\\jaman.com\\Jaman
Player\\install\\jaman-installer-beta1.2.msi\"
AI_SETUPEXEPATH=\"Z:\\usr\\local\\google\\bigdata\\dkegel\\installers\\jaman-installer.exe\"
SETUPEXEDIR=\"Z:\\usr\\local\\google\\bigdata\\dkegel\\installers\\\"",00000000,00000000,00000000,00000020,00000000,00000000,0033fbe4,0033fc28)
ret=00405825
I'll attach a kludgy workaround that makes the installer happy;
it detects the situation by checking for commandlines that
start with a space and then a slash. Total kludge-o-rama,
we need to write a test for msiexec and see what it really does.
--
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=13472
Summary: Billingtracker installer doesn't show all options
Product: Wine
Version: 1.0-rc2
Platform: Other
URL: http://billingtracker.com/BillingTracker_download/bt_pro
400.exe
OS/Version: other
Status: NEW
Keywords: download, Installer, NoAppDBEntry
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonathan(a)ernstfamily.ch
Created an attachment (id=13388)
--> (http://bugs.winehq.org/attachment.cgi?id=13388)
MSI trace
Billingtracker installer is not asking the user what version (client,
server+client, multi) it should install as it does on windows.
--
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=9644
Summary: Battlefield Vietnam does not start
Product: Wine
Version: 0.9.44.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martin(a)gamesplace.info
Created an attachment (id=8048)
--> (http://bugs.winehq.org/attachment.cgi?id=8048)
Backtrace
I am currently trying to run Battlefield Vietnam using Wine 0.9.44 and Fedora
7.
It is patched to the newest version, 1.21. When running the normal game,
nothing appears. When having the .exe patched to not use a CD, the following
debug output appears:
(See attachment)
Please tell me which further information you need to fix the issue.
--
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=13578
Summary: Black Hawk Down Demo causes stack overflow attempting
connection to NovaWorld
Product: Wine
Version: 1.0-rc2
Platform: PC
URL: http://www.novalogic.com/downloads.asp#54
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dnashdig(a)gmail.com
Created an attachment (id=13537)
--> (http://bugs.winehq.org/attachment.cgi?id=13537)
attempting to connect to NovaWorld causing stack overflow
Log for wine-1.0-rc3 attached (fresh ~/.wine). The game simply sits there
"Connecting to NovaWorld..." until you click Back.
--
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=10672
Summary: ArcGIS 9.2 (ArcMap.exe) crashes on startup
Product: Wine
Version: 0.9.50.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yecarrillo(a)gmail.com
Created an attachment (id=9499)
--> (http://bugs.winehq.org/attachment.cgi?id=9499)
ArcMap 9.2 Crash on startup
ArcGIS 9.2 (ArcMap.exe) crashes on startup after a successful install process.
--
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=10479
Summary: Grass jumping around in S.T.A.L.K.E.R.
Product: Wine
Version: 0.9.49.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ambro(a)b4ever.net
In S.T.A.L.K.E.R. - Shadow of Chernobyl, parts of grass are disappearing and
appearing on wrong locations. E.g. there's some area where there is no grass as
should be but there's some grass on the road where it shouldn't be. The grass
keeps appearing and disappearing as I move and look around, also if I stay on
the same posistion I think.
With UseGLSL=disabled everything looks fine.
GeForce 8800GTX, driver 100.14.19
--
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=15324
Summary: gdi32: bitmap test fails in PC-BSD but not Ubuntu
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: FreeBSD
Status: NEW
Keywords: source, testcase
Severity: minor
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
[pcbsd@pcbsd ~/wine-git/dlls/gdi32/tests]$ rm -rf ~/.wine ; make bitmap.ok
../../../tools/runtest -q -P wine -M gdi32.dll -T ../../.. -p gdi32_test.exe.so
bitmap.c && touch bitmap.ok
wine: created the configuration directory '/home/pcbsd/.wine'
Could not load Mozilla. HTML rendering will be disabled.
wine: configuration in '/home/pcbsd/.wine' has been updated.
bitmap.c:1193: Test failed: GetDIBits with 4 bpp DIB selected in DC: Invalid
DIB bits
bitmap.c:1193: Test failed: GetDIBits with 8 bpp DIB selected in DC: Invalid
DIB bits
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=8
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=24
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=32
err:bitmap:DIB_GetBitmapInfo (39): unknown/wrong size for header
err:bitmap:DIB_GetBitmapInfo (11): unknown/wrong size for header
err:bitmap:DIB_GetBitmapInfo (13): unknown/wrong size for header
err:bitmap:DIB_GetBitmapInfo (16): unknown/wrong size for header
*** Error code 2
+bitmap 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=15283
Summary: Morrowind: Random, usually reproducible crashes when
traveling by boat
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=16086)
--> (http://bugs.winehq.org/attachment.cgi?id=16086)
output/backtrace in git
Got some free time, fired up Morrowind. All graphics settings are Wine default.
Had it happen once earlier, when using the boat at Khuul. As soon as I talk to
the person to travel, I get a hang, then in the terminal I see the crash. Tried
to reproduce it with logging, didn't happen. Few hours later, while still
logging, saw it again (twice). Log attached.
Is a +heap needed? With such a memory intensive app, it's going to be slow as
hell and a huge file...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14616
Summary: Dracula Origin Demo: Pixelshaders broken
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cja(a)gmx.net
Created an attachment (id=15015)
--> (http://bugs.winehq.org/attachment.cgi?id=15015)
Dracula Origin with PixelShaders on.
If you turn on PixelShaders in winecfg, the characters in the
dracula origin demo is all black, if existing, and missplaced.
The console is then fille with:
--
fixme:d3d_shader:shader_glsl_load_constants >>>>>>>>>>>>>>>>>
GL_INVALID_OPERATION (0x502) from glUniform4fvARB @ glsl_shader.c / 411
fixme:d3d_shader:shader_glsl_select >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION
(0x502) from glUseProgramObjectARB @ glsl_shader.c / 3383
--
Over and over again.
If pixelshaders is turned off, the game seems to run fine.
(Nvidia properitery drivers, stock kubuntu 8.04.1)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14511
Summary: Discworld Noir: segfault crash regression upon startup
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: drakh(a)spamcop.net
CC: jon_p_griffiths(a)yahoo.com
Discworld Noir crashes due to a segmentation fault upon attempting to run the
game. It will change screen resolution and black the screen, but fails before
displaying the "Loading" graphic. This is a regression, caused by the following
commit (assuming I did the regression test correctly):
1ad733e4e0a589bf2713121cf12c3cbf57799608 is first bad commit
commit 1ad733e4e0a589bf2713121cf12c3cbf57799608
Author: Jon Griffiths <jon_p_griffiths(a)yahoo.com>
Date: Fri Jun 20 00:19:09 2008 -0700
ntdll: Implement [Rtl]InitializeCriticalSectionEx.
:040000 040000 ec12af5b4d2ed0419484dbe1e93b5ccd07eca086
453f1ed108b3fad8f3e135ccd08f299866799033 M dlls
:040000 040000 0b71251ecb6641f5300fcba465db355f7a9067aa
2ca394752d86bc84409c7076572fdcc28c1acfe4 M include
Before this, it would load and let you start a new game, before crashing with
another segmentation fault after playing the intro. There is a report in the
AppDB that the game was fully playable with WINE 0.9.59, though I've been
unable to replicate 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=14057
Summary: "Psalmen - Lieder des Lebens" fails to load
Product: Wine
Version: 1.0.0
Platform: Other
URL: http://bibelsoftware.de/index.php?mode=5&pid=82
OS/Version: other
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: online(a)patrick-brueckner.de
Created an attachment (id=14277)
--> (http://bugs.winehq.org/attachment.cgi?id=14277)
wine output
Installing "Psalmen - Lieder des Lebens" works now with 1.0 - thanks for that.
Unfortunately it's still not possible to use that programme: When starting up
an error "Runtime Error (6): Overflow" is shown and the programme quits.
Attached there is the wine output (a lot of fixme's). I'm not quite sure which
of these errors causes the programme to crash. If the application is needed, I
will provide it - just contact me via email.
--
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=13302
Summary: GetProcessMemoryInfo is unimplemented
Product: Wine
Version: 1.0-rc1
Platform: PC
URL: http://forum.winehq.org/viewtopic.php?t=946
OS/Version: Linux
Status: NEW
Keywords: testcase
Severity: enhancement
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
>From wine-users:
I have made a simple program, but results from both windows and wine are quite
different. Is this a bug in my program or in wine? Any advice is appreciated :)
/*
result under windows:
{
}
[successed: 1085440]{
}
result under wine(linux):
{
}
[successed: 0]{
*/
#include <windows.h>
#include "psapi.h"
#include <stdio.h>
#include <stdlib.h>
#pragma comment ( lib, "psapi.lib" )
void GetCurrentProcessMemory ()
{
PROCESS_MEMORY_COUNTERS pmc;
printf("{\n}");
bool ret=GetProcessMemoryInfo ( GetCurrentProcess() , &pmc, sizeof ( pmc
) );
if (ret)
printf("\n[successed: %d]", (int)pmc.WorkingSetSize);
else
printf("\n<failed>");
printf("{\n}");
}
void main()
{
GetCurrentProcessMemory();
}
For anyone interested in implementing, see:
http://source.winehq.org/source/dlls/psapi/psapi_main.c#L520http://source.winehq.org/source/dlls/ntdll/process.c#L211
--
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=12896
Summary: kernel32: pipe.ok hangs in PC-BSD but not Linux
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: FreeBSD
Status: NEW
Keywords: testcase
Severity: minor
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=12602)
--> (http://bugs.winehq.org/attachment.cgi?id=12602)
+ntdll,+pipe
When running make -k test in PC-BSD, I often get a hang in kernel32: pipe.ok
+ntdll,+pipe 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=12200
Summary: [Regression] error message in TREPCAD on project
creation
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.strich.b(a)web.de
Created an attachment (id=11607)
--> (http://bugs.winehq.org/attachment.cgi?id=11607)
Screenshot of the error message
When starting TREPCAD 3.4.0, before the user can create a new project, there
pops up an error message. When choosing to create a new stair anyways, the
program is usable as before this regression occured. This bug showed in the
same way with 0.9.51. TREPCAD worked fine with 0.9.57.
--
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.