http://bugs.winehq.org/show_bug.cgi?id=11119
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk
--- Comment #1 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-01-10 12:12:55 --- This bug report as it is now is a duplicate of bug #10467. I've added a howto, derived from the last mentioned bug, here: http://appdb.winehq.org/objectManager.php?sClass=version&iId=3754
After following these steps the app crashes in wintrust. With the simple hack below i was able to get the main window up. Unfortunately the window seems to freeze immediately and is irresponsive to input. Did't look any further in the cause of this.
Question: so how do we deal with this (and other) .net-bugs. Do we resolve them as duplicate or do we leave them open for the bugs appearing after the work-around of http://appdb.winehq.org/objectManager.php?sClass=version&iId=3754 ?
diff --git a/dlls/wintrust/wintrust_main.c b/dlls/wintrust/wintrust_main.c index b7788b1..d69f3a9 100644 --- a/dlls/wintrust/wintrust_main.c +++ b/dlls/wintrust/wintrust_main.c @@ -166,7 +166,7 @@ static LONG WINTRUST_DefaultVerifyAndClose(HWND hwnd, GUID *actionID, WINTRUST_DATA *data) { LONG err; - + if(!hwnd) return ERROR_INVALID_PARAMETER; TRACE("(%p, %s, %p)\n", hwnd, debugstr_guid(actionID), data);
err = WINTRUST_DefaultVerify(hwnd, actionID, data);