Community
Participate
Working Groups
Build Identifier: M20080911-1700 I got a null pointer exception while I open my remote project (when I cancel the login dialog during opening it). I found its cause. Its because, in RSEFileStore.openInputStream(int, monitor), null value of monitor is not checked and directly called 'monitor.setCanceled(true)' in the catch clause. But when FileSystemResourceManager calls as 'descriptionStore.openInputStream(EFS.NONE, null)', it produces the 'null pointer exception' and shows the error in Platform dialog. Kindly fix this. Thank you. Reproducible: Always Steps to Reproduce: 1. Go to RSEFileStore.openInputStream(int, monitor) 2. See in catch clause, that 'monitor.setCanceled(true)' called without null check. 3. U can see FileSystemResourceManager calls as 'descriptionStore.openInputStream(EFS.NONE, null)' in its read method.