Bugs item #1438209, was opened at 2006-02-24 17:37 Message generated for change (Comment added) made by fregro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1438209&group_id=105970
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: extensions Group: v2.0 >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Antony Walmsley (antonywa) Assigned to: Fredrik Grohn (fregro) Summary: Infinite loop in ConfigureComPlusUninstall Initial Comment: Some of my colleagues have reported lockups when uninstalling two of our products which use some merge modules I have written. I was able to trace this in a debugger to a problem with asmList in ConfigureComPlusUninstall. I think that the function SortAssemblyListByModule in cpiasmsched.cpp needs pAsmList->pFirst->pPrev = NULL; just before it exits. In my case, it pointed to the last item in the list creating a circular linked list. This caused a problem in CpiAssembliesUninstall and CpiRoleAssignmentsUninstall which start at the end of the list and work backwards. Since there was no NULL at the start, the for loop never finished. ---------------------------------------------------------------------- >Comment By: Fredrik Grohn (fregro) Date: 2006-08-26 02:05 Message: Logged In: YES user_id=1138467 Should be fixed in 2.0.4423.0. ---------------------------------------------------------------------- Comment By: Antony Walmsley (antonywa) Date: 2006-02-24 17:49 Message: Logged In: YES user_id=1345213 I should also point out that I made the change suggested by Paul Gunn in bug 1420636. Without this, the product would not install in the first place. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1438209&group_id=105970 ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ WiX-devs mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wix-devs
