harvester/client/src/harvesterclient.cpp
branchRCL_3
changeset 9 82c0024438c8
parent 8 50de4d668bb6
child 12 9f21bab39f42
--- a/harvester/client/src/harvesterclient.cpp	Wed Mar 31 22:19:07 2010 +0300
+++ b/harvester/client/src/harvesterclient.cpp	Wed Apr 14 16:24:03 2010 +0300
@@ -523,19 +523,14 @@
     {
     WRITELOG( "CreateServerProcess() - begin" );
     RProcess server;
-    TInt result = server.Create( KHarvesterServerExe, KNullDesC );
-
-    if( result == KErrAlreadyExists )
-    	{
-    	return KErrNone;
-    	}
-    
+    TInt result = server.Create( KHarvesterServerExe, KNullDesC );   
     if ( result != KErrNone )
         {
         WRITELOG1( "CreateServerProcess() - failed to create server process, error: %d", result );
         return result;
         }
  
+    // Process created successfully
     TRequestStatus stat( 0 );
     server.Rendezvous( stat );