http://bugs.winehq.org/show_bug.cgi?id=2741
------- Additional Comments From geoffd(a)professionalhosts.com 2005-22-03 12:27 -------
It does not hang for me so I can't get a PID etc. It just runs through giving
the error message.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2474
------- Additional Comments From a_villacis(a)palosanto.com 2005-22-03 11:54 -------
I have been reviewing what happens when MP3GainGUI starts up that triggers the
first of the errors (the dialog box that claims mp3gain.exe could not be found).
The source code of MP3GainGUI has been helpful for this.
MP3GainGui tries to invoke mp3gain.exe at startup in order to get the program
version. This backend reports its version on stdout when invoked with a /v
switch. So, the VB frontend opens a pipe and connects the backend stdout to it
in order to read the version string from it. Since the routine to fetch a
program's stdout is a generic one, and the execution of the program might take
a while, the routine polls for available data from the pipe (much in the way the
select() call is used in Unix) before reading, and calls DoEvents (a VB keyword
that yields control to the GUI in order to process window events) if no data
is available. The function called to poll for available data is PeekNamedPipe(),
with a (supposedly) NULL buffer pointer, and a buffer length of zero. The Wine
implementation of PeekNamedPipe() checks for a NULL pointer before attempting
to read data from the pipe with recv() and the MSG_PEEK flag.
The problem arises because the VB frontend fails at specifying a NULL pointer
for the buffer pointer of PeekNamedPipe(). Because of some poorly-documented
rule about the way an Any parameter in VB behaves, the attempt to pass a
literal 0& (which is, as far as I can remeber, an equivalent of "0L" in C) to
the lpBuffer parameter (declared as Any in the VB file) does NOT translate into
a NULL pointer, but to a non-NULL pointer that points to the zero value (or so
I think). Then PeekNamedPipe() receives a non-NULL pointer, which it interprets
as a valid buffer, and fails to check that the buffer length is set to 0, so it
end up trying to perform a zero-length peek on an invalid buffer with recv().
This operation is (apparently) not supported, and so it says in the errno value.
The PeekNamedPipe() function should check for the buffer length as well as the
buffer pointer before trying to perform the recv() peek on the pipe.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2809
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-22-03 11:00 -------
I'm attaching another program which can help you to better understand the problem.
This is done with Borland C++.
Regards.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2811
Summary: Keyboard/Mouse does not work on AGS games
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mteske(a)imagnos.com
on games constructed with AGS, the AdventureGameStudio,
keyboard and mouse do not work correctly.
1. The mouse always stays in the center of the screen. This I could fix by
commenting out (as of now) line 786 of dlls/dinput/mouse.c:
SetCursorPos( This->mapped_center.x, This->mapped_center.y );
Of course I don't know if that's a valid fix, so I post a bug here for help on
how to debug/fix it properly.
2. Keyboard input does not work at all. although the window gets the events from
X11 (I see them with WINEDEBUG=key) they do not reach dinput (Nothing is seen
on keyboard input and WINEDEBUG=dinput except initialization).
A short Example for such a game can be downloaded under
http://www.bigbluecup.com/games.php?action=detail&id=8
Called "Rob Blanc 1".
To get it running under wine, after unzipping one needs to create a file
acsetup.cfg with e.g. the following contents:
---- cut ----
[misc]
cachemax=5120
screenres=1
windowed=1
forceletterbox=0
antialias=0
[sound]
digiid=-1
midiid=-1
usevox=1
usespeech=1
------- cut ---------
Thanks for any help.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2796
mteske(a)imagnos.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mteske(a)imagnos.com 2005-22-03 10:07 -------
BTW, I tested lately with latest CVS and it was fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2810
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-ports |wine-misc
Keywords| |NoAppDBEntry, regression
Version|20050111 |20050211
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-22-03 09:43 -------
If it is a regression could you please try to do regression testing on it. It
would be really usefull to find the patch that broke this.
http://www.winehq.org/site/docs/wine-devel/x1318
You should probably try curent CVS to se if it is fixed in the mean time first.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2741
------- Additional Comments From mike(a)navi.cx 2005-22-03 08:10 -------
When it hangs please retrieve the PID of the hung process and use the "pmap"
program on it. Then attach the output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2810
Summary: Access to com1 broken
Product: Wine
Version: 20050111
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-ports
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jellianef(a)yahoo.fr
Mdk 10.1 pro pack, win4lin 5, IPACS Aerofly pro rc scale model sim, access to
serial (com1) attached cable with dongle.
wine 20050111 mdk works fine finding the serial attached cable, broken with wine
20050211 mdk.
afpro was installled in win4lin 5 (/home/jm/win) along with directx, and wine
configured to use the win4lin dlls (wine windows points to /win/windows).
w4l has win98 osr2 installed.
This permits afpro to run using opengl and directx
Two traces are available at http://www.ellianef.org/wine/
afpro-good is the trace when working with wine 20050111
afpro-bad is the trace when not finding the dongle on com1 port with wine 20050211
In the bad trace, there are ioctl errors.
I think there has been a regression between the two versions.
Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.