COMMON : fix some potential bugs 32/39232/1 tizen
authorseokgil.kang <seokgil.kang@samsung.com>
Tue, 12 May 2015 04:30:30 +0000 (13:30 +0900)
committerseokgil.kang <seokgil.kang@samsung.com>
Tue, 12 May 2015 04:30:30 +0000 (13:30 +0900)
Change-Id: Ia0cd78e134f30b5fdbd1a5c4f43287bec2e26035
Signed-off-by: seokgil.kang <seokgil.kang@samsung.com>
org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ProfileLaunchShortcut.java

index e7183e6..b514d9b 100644 (file)
@@ -496,7 +496,8 @@ public static void showErrorDialog(final String errorMessage, final String reaso
                        String syncRootstrap = RootstrapUtil.getUserSyncRootstrapPath(rootstrap.getId());
                local = new Path(syncRootstrap).append("usr").toString();
                } else {
-                       local = new Path(rootstrapPath).append("usr").toString();
+                       if (rootstrapPath != null)
+                               local = new Path(rootstrapPath).append("usr").toString();
                        }
 
         entry2.setBackendPath(new Path(backend));