Nearly all Installshield installers fail

Mike Hearn mh at codeweavers.com
Fri Apr 1 08:39:23 CST 2005


On Fri, 01 Apr 2005 10:53:36 +0200, Uwe Bonnes wrote:
> nearly all recent install shield installer fail for me, similar like:

I debugged this a bit with Maxime Bellenge, she sent me a full trace which
revealed that this is a known problem. Here is a quick hacky patch to work
around it:

Index: stubmanager.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/stubmanager.c,v
retrieving revision 1.19
diff -u -p -r1.19 stubmanager.c
--- stubmanager.c	17 Mar 2005 10:26:20 -0000	1.19
+++ stubmanager.c	23 Mar 2005 21:51:08 -0000
@@ -477,7 +481,7 @@ BOOL stub_manager_notify_unmarshal(struc
     default:
         WARN("object OID %s already unmarshaled\n",
             wine_dbgstr_longlong(m->oid));
-        ret = FALSE;
+        ret = TRUE; /* FIXME */
         break;
     }
 
But I suspect you will hit further problems later.




More information about the wine-devel mailing list