diff -r f92a4f87e424 -r 012cc2ee6408 usbmgmt/usbmgrtest/ObexClassController/test/src/simpleObexClient.cpp --- a/usbmgmt/usbmgrtest/ObexClassController/test/src/simpleObexClient.cpp Tue Aug 31 17:01:47 2010 +0300 +++ b/usbmgmt/usbmgrtest/ObexClassController/test/src/simpleObexClient.cpp Wed Sep 01 12:35:00 2010 +0100 @@ -119,16 +119,16 @@ // Create file session and create a new private path on drive C RFs fileSession; - User::LeaveIfError(fileSession.Connect()); + fileSession.Connect(); - User::LeaveIfError(fileSession.CreatePrivatePath(EDriveC)); - User::LeaveIfError(fileSession.SetSessionToPrivate(EDriveC)); - User::LeaveIfError(fileSession.SessionPath(iSessionPath)); + fileSession.CreatePrivatePath(EDriveC); + fileSession.SetSessionToPrivate(EDriveC); + fileSession.SessionPath(iSessionPath); // Copy the files from oby file ro the newly created path - User::LeaveIfError(BaflUtils::CopyFile(fileSession, KFilePath1, KFilename1,0)); - User::LeaveIfError(BaflUtils::CopyFile(fileSession, KFilePath2, KFilename2,0)); - User::LeaveIfError(BaflUtils::CopyFile(fileSession, KFilePath3, KFilename3,0)); + BaflUtils::CopyFile(fileSession, KFilePath1, KFilename1,0); + BaflUtils::CopyFile(fileSession, KFilePath2, KFilename2,0); + BaflUtils::CopyFile(fileSession, KFilePath3, KFilename3,0); fileSession.Close();