MSI: continue when a duplcate component is found and loaded

Mike McCormack mike at codeweavers.com
Fri Dec 24 01:39:53 CST 2004


ChangeLog:
<aric at codeweavers.com>
* continue when a duplcate component is found and loaded
-------------- next part --------------
--- dlls/msi/action.c.old	2004-12-24 16:38:08.000000000 +0900
+++ dlls/msi/action.c	2004-12-24 16:38:22.000000000 +0900
@@ -1943,6 +1943,7 @@
                   c_indx);
             package->features[index].Components[cnt] = c_indx;
             package->features[index].ComponentCount ++;
+            continue;
         }
 
         rc = ACTION_OpenQuery(package->db, &view2, Query2, buffer);
@@ -1971,6 +1972,7 @@
 
             package->features[index].Components[cnt] = c_indx;
             package->features[index].ComponentCount ++;
+            TRACE("Loaded new component to index %i\n",c_indx);
         }
         MSI_ViewClose(view2);
         msiobj_release( &view2->hdr );


More information about the wine-patches mailing list