http://bugs.winehq.org/show_bug.cgi?id=10501
Summary: NFSU2 crashes out when loading a level
Product: Wine
Version: 0.9.49.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sexy_b14(a)hotmail.com
Created an attachment (id=9244)
--> (http://bugs.winehq.org/attachment.…
[View More]cgi?id=9244)
NFSU2 console output
When loading a level in NFSU2 get to loading screen and locks up. (see console
output) when it occurs it slow down X have to Ctrl+C to get X back
thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
[View Less]
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 …
[View More]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.
[View Less]
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 …
[View More]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.
[View Less]
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 …
[View More]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.
[View Less]
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)…
[View More]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.
[View Less]
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 …
[View More]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.
[View Less]
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 …
[View More]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.
[View Less]
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 …
[View More]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.
[View Less]
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)…
[View More]
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.
[View Less]
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.…
[View More]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.
[View Less]