Community
Participate
Working Groups
In SystemView$ExpandRemoteObjects.execute() we have the following code: if (item != null && !item.isDisposed()) { IRSECallback callback = getCallbackForSubChildren(itemToExpand, _toExpand); createChildren(item, callback); ((TreeItem) item).setExpanded(true); } The problem is that getCallbackForSubChildren() can return null and we're not checking for that case.
Created attachment 192773 [details] patch to check for null callback
I've committed the fix to cvs.