lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestUtils.cpp
changeset 44 97b0fb8a2cc2
parent 0 e4d67989cc36
child 57 2efc27d87e1c
--- a/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestUtils.cpp	Mon May 03 14:06:43 2010 +0300
+++ b/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestUtils.cpp	Tue Jul 20 16:35:53 2010 +0530
@@ -208,8 +208,13 @@
 		}
 
 	//determine the ROM confguration (NAND or non-NAND)
+	TInt r = KErrNone;
 	RFs fs;
-	fs.Connect();
+	r = fs.Connect();
+	if (r != KErrNone)
+		{
+			return r;
+		}
 	TBool nandBuild = (EComTestUtils::RomBuildType(fs)==ENandRomBuild);
 	fs.Close();
 	
@@ -251,8 +256,12 @@
 			//is also checking the media type of C drive to determine the same.
 			//Currently added this check for WDP enabled in case of H4 'muid == HAL::EMachineUid_OmapH4' only
 			TDriveInfo driveInfo;
-			
-			fs.Connect();
+			TInt rf = KErrNone;
+			rf = fs.Connect();
+			if (rf != KErrNone)
+		  		{
+			  return rf;
+		  		}
 			fs.Drive(driveInfo, EDriveC);
 			fs.Close();