1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Bug 118900: Display libraries loaded in post-mortem debug. Applied with modifications the patch from Joanne Woo (jwoo.mvista.com).

This commit is contained in:
Mikhail Khodjaiants 2006-01-04 20:14:19 +00:00
parent 28af61ba10
commit ee78872cb9

View file

@ -123,7 +123,7 @@ public class CModuleManager implements IModuleRetrieval {
public void sharedLibraryUnloaded( ICDISharedLibrary cdiLibrary ) {
CModule library = null;
synchronized( fModules ) {
find( cdiLibrary );
library = find( cdiLibrary );
if ( library != null ) {
fModules.remove( library );
}