1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Apply patch for bug 150924 - NPE in monitor when disconnecting daytime

This commit is contained in:
Martin Oberhuber 2006-07-18 11:30:39 +00:00
parent 66b4cc7750
commit 6e04109109

View file

@ -143,7 +143,10 @@ FocusListener
if (children != null)
{
SystemTableTreeViewProvider provider = (SystemTableTreeViewProvider)_viewer.getContentProvider();
provider.setCache(children);
if (provider!=null) {
//bug 150924: provider can be lost when disconnecting while this job runs
provider.setCache(children);
}
}