http://bugs.winehq.org/show_bug.cgi?id=6547
------- Additional Comments From julliard(a)winehq.com 2006-29-10 02:57 -------
Most likely the XInitThreads change. You should get a backtrace of the hanging
thread to find out which X11 function is deadlocking.
--
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=5563
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-29-10 01:31 -------
Created an attachment (id=3961)
--> (http://bugs.winehq.org/attachment.cgi?id=3961&action=view)
+relay,+seh,+tid
This might be a problem in DialogBoxParamA
0021:Call user32.DialogBoxParamA(00400000,00000068,000401f8,004bd890,00000000)
ret=004bdd3e
0021:Ret user32.DialogBoxParamA() retval=00000000 ret=004bdd3e
MSDN states:
If the function fails because the hWndParent parameter is invalid, the return
value is zero. The function returns zero in this case for compatibility with
previous versions of Microsoft Windows. If the function fails for any other
reason, the return value is 1.
If change return value to -1 instead of 0, it doesn't crash anymore, prints a
d3d fixme (so it get's further) but then seems to hang. The icon is in the
taskbar, and ps -ux shows the program runs, but i can only see a black screen.
diff --git a/dlls/user/dialog.c b/dlls/user/dialog.c
index 4021151..a17abf3 100644
--- a/dlls/user/dialog.c
+++ b/dlls/user/dialog.c
@@ -792,7 +792,7 @@ INT_PTR WINAPI DialogBoxParamA( HINSTANC
HRSRC hrsrc;
LPCDLGTEMPLATEA ptr;
- if (!(hrsrc = FindResourceA( hInst, name, (LPSTR)RT_DIALOG ))) return 0;
+ if (!(hrsrc = FindResourceA( hInst, name, (LPSTR)RT_DIALOG ))) return -1;
if (!(ptr = (LPCDLGTEMPLATEA)LoadResource(hInst, hrsrc))) return 0;
hwnd = DIALOG_CreateIndirect( hInst, ptr, owner, dlgProc, param, FALSE,
TRUE );
if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
diff --git a/dlls/user/sysparams.c b/dlls/user/sysparams.c
--
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=6549
------- Additional Comments From mike(a)codeweavers.com 2006-29-10 01:13 -------
Bugs usually require an application to test and verify. For some programs,
simply returning TRUE might make the program work.
Since you're presumably a programmer, and you want to use Wine to support your
(unknown) application, how about having a go at fixing it yourself?
--
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=6549
the3dfxdude(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-console |wine-net
Summary|SetTcpEntry |iphlpapi: SetTcpEntry not
| |implemented
Version|20050310 |CVS
--
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=6549
Summary: SetTcpEntry
Product: Wine
Version: 20050310
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agpublic(a)ecommsec.com
CC: agpublic(a)ecommsec.com
fixme:iphlpapi:SetTcpEntry (pTcpRow 0x778dfe50): stub
Let me know when you have the function fixed, so I can ship my app with
Mac & Linux usage instructions.
--
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=3312
------- Additional Comments From dmitry(a)codeweavers.com 2006-28-10 22:41 -------
Most likely the WMs should be fixed then. Or at least some investigation
should be done to see what is going on.
--
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=6480
------- Additional Comments From gamegod(a)sympatico.ca 2006-28-10 22:37 -------
I also have this problem. The above two comments describe it perfectly...
--
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=6548
Summary: "Nancy Drew: The Creature of Kapu Cave" won't start
Product: Wine
Version: CVS
Platform: Other
URL: http://www.herinteractive.com
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Installation works fine, if ungodly slowly (15 minutes on a fast machine!).
It even survives the disk change ok (as long as you didn't start
the game with the cd-rom as the current directory, d'oh).
Startup fails unless you have a sound device, so
I had to run winecfg and pick oss (users shouldn't have to do this!).
Then it fails with a direct draw error:
err:ddraw:IDirectDrawSurfaceImpl_SetSurfaceDesc Setting the surface memory isn't
supported yet
and a dialog:
"InitDirectDraw(), backBuffer SetSurfaceDesc() - DDERR_INVALIDPARAMS - One or
more of the parameters passed to the callback function are incorrect."
--
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=6547
------- Additional Comments From mike(a)codeweavers.com 2006-28-10 22:18 -------
Please do a regression analysis, as described in the "regression testing"
section of the GitWine wiki page, and tell us the ID of the commit which caused
the regression.
http://wiki.winehq.org/GitWine
--
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.