http://bugs.winehq.org/show_bug.cgi?id=10032
Summary: Wine must not use unix select() for networking where
there might be high fd's
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: patch
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
select() cannot handle fds higher than FD_SETSIZE.
Thus if you open a lot of plain old files, then
create one socket and try to use a networking function
based on select(), you're hosed.
This actually happened recently during soak testing of an app doing
lots of wininet stuff, which tickled a socket leak
in wininet (see
http://winehq.org/pipermail/wine-patches/2007-October/045089.html
for the leak fix). This was a wake-up call for us; the
app in question is fine after the leak fix, but an app
that really used lots of file descriptors would hit the bug
in a bad way.
Here's how to find all the suspicious calls to select():
$ find . -name '*.c' | xargs grep '[^a-z]select[^a-zA-Z]*(.*&' | grep -v
'/tests/'
Calls where select is used with no fd's are ok, since they can't run into the
problem. Calls which use a winsock select() instead of a unix select()
might be ok (e.g. netapi32/nbt.c), since winsock's select doesn't
have a fixed FD_SETSIZE. Only two problematic calls remain:
wininet/internet.c: if (select(nSocket+1,&infd,NULL,NULL,&tv) > 0)
wininet/netconnection.c: if
(select(connection->socketFD+1,&infd,NULL,NULL,&tv) > 0)
These must be replaced with poll(), which can handle high fd's.
This was discussed last November,
http://www.winehq.org/pipermail/wine-devel/2006-November/052099.html
and Damjan submitted patches to fix them:
http://www.winehq.org/pipermail/wine-patches/2006-November/032529.htmlhttp://www.winehq.org/pipermail/wine-patches/2006-November/032530.html
but these patches don't seem to have been applied yet. Time to get them in!
--
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=9994
Summary: mshtml: No icons visible in the Adobe Reader 8.1 "First
Run" - Advertisement
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://appdb.winehq.org/appview.php?iVersionId=8988
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: wine-shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Created an attachment (id=8512)
--> (http://bugs.winehq.org/attachment.cgi?id=8512)
no icons visible
After using the canidate for wine_gecko 0.1.1 to accept the License (bug
#9519),
the Adobe Reader 8.1 displays a Window "Beyond Adobe Reader",
but the icons are not visible (see attachment)
--
By by ... Detlef
--
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=9987
Summary: Missing function GDI32.dll.RemoveFontMemResourceEx
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frans.kool(a)gmail.com
Created an attachment (id=8507)
--> (http://bugs.winehq.org/attachment.cgi?id=8507)
Adds the missing function, composed of different patches
When running Titan Quest (see AppDb), the game crashes with the message:
wine: Call from 0x3e6193 to unimplemented function
GDI32.dll.RemoveFontMemResourceEx, aborting
Searching in the archives I found several implementations, which I compared. I
removed the AddFontMemResourceEx function, since this is already present in
current CVS. However I never submitted a patch before. Please find attached the
diff which, once applied to CVS (wine-0.9.46-261-ga76d10d) fixes this issue.
Please let me know if I need to provide traces and/or logs
Frans
--
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=9982
Summary: Dragin NaturallySpeaking training module - text is too
big.
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.nuance.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
wine-0.9.46-249-g54a4717
When training Dragon NaturallySpeaking 9, the text in the training box has
gotten a bit bigger than it used to be. In one instance, one of the words
disappears below the rim of the box.
The training box cannot be resized.
To complete training, you have to pronounce all the words. So you have to know
that the word is there, and that you are supposed to say it.
--
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=9981
Summary: Dragon NaturallySpeaking 9 sound loops with wine-0.9.46-
249-g54a4717
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
DNS 9 had been running well for a few days until today. Then an update and
re-install showed that the "default" sound system was replaced by
dsnoop:0.
On DNS's microphone sensitivity test, it worked, but it seemed to have disabled
my ATI IXP MP97.
When I did the training, funny things started to happen. Every once in a while
training would hang up, and wait for me to press the Pause button and then
re-start. But the training finished and saved.
The big problem came when I finished training, opened DragonPad, and started
dictating.
The program took a while to spew out my first phrase, but then it did -- over
and over again, nonstop, until I shut off the program.
There is some sort of looping going on.
wine-0.9.46-249-g54a4717 is the git I was using.
--
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=9977
Summary: Google Earth geographical labels behave strangely
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://earth.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This is a very old bug, but until the opengl child window
bug was fixed, it was kind of moot. Place names on the globe
look ok, sort of, when far away, but as you zoom in,
the letters fly apart. Is some perspective transform screwed up?
--
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=9973
Summary: ioshock demo: crashes on loading screen
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: actong88(a)gmail.com
Bioshock Steam demo crashes when it tries to show the loading screen after you
select a difficulty level. The loading screen never shows, you just get a
blank page.
--
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=9955
Summary: "CarTest" Demo just displays black screen
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
URL: http://www.zone.ee/smr597/files/3Dver4.rar
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
Its part of the S5 Game Demo examples.
Some more available here: http://forum.rscnet.org/showthread.php?t=247271
The console is full of this messages:
err:d3d_surface:d3dfmt_convert_surface Unsupported conversation type 9
err:d3d_surface:d3dfmt_convert_surface Unsupported conversation type 9
It's really just a small download, so If anyone feels like debugging something,
have a look. ;)
--
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=9923
Summary: InitializeCredentialsHandle fails with ntlm_auth 3.0.26b
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: wine-sspi
AssignedTo: blin(a)gmx.net
ReportedBy: blin(a)gmx.net
As Hans reported on WineConf2007, ntlm_auth fails with a new error message in
version 3.0.26b. That causes the dispatcher to return SEC_E_INTERNAL_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=9915
Summary: cookies not set within steam
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hbernier(a)gmail.com
Created an attachment (id=8415)
--> (http://bugs.winehq.org/attachment.cgi?id=8415)
output of wine when attempting to enter age verification information
Issue:
When attempting to install a demo or purchase a game which requires age
verification, instead of setting the cookie and being forwarded to the
appropriate page, we are redirected to the steampowered.com front page.
This was possible in 0.9.46.
Background:
Actually purchasing or trying a demo did not work in 0.9.46, due to bug 9516.
This was resolved in wine-0.9.46-g54720c7. It is now possible to install games
that do not require age verification.
Testing:
Control Case: navigate site with 'ie'
wine iexplore "http://www.steampowered.com"
- Navigate to stubbs the zombie:
games->browse games->single player-
click on 'name' to sort by name, press 9.
- Click on stubbs the zomie demo.
- Enter age, get redirected to proper place.
The cookie was set and I was redirected to the proper page. It's not possible
to install the game at this point, probably because steam isn't a registered
handler.
Test Case: Navigate site within the steam interface
wine Steam.exe
- Follow above instructions to reach appropriate game
- Enter Age
Instead of being redirected to proper area, you are now redirected to the main
page of steam powered.
I have attached the output of wine relative to this problem
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.