vpnengine/pkiserviceapi/src/pkiserviceapi.cpp
branchRCL_3
changeset 40 473321461bba
parent 38 9f4e37332ce5
child 41 e06095241a65
equal deleted inserted replaced
38:9f4e37332ce5 40:473321461bba
     1 /*
     1 /*
     2 * Copyright (c) 2003-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2003-2006 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
  1039 
  1039 
  1040     TUid temp;
  1040     TUid temp;
  1041     for (TInt i = 0; i < count; i++)
  1041     for (TInt i = 0; i < count; i++)
  1042         {
  1042         {
  1043         applList->Read(i * sizeof(TUid), (TAny*)&temp, sizeof(TUid));
  1043         applList->Read(i * sizeof(TUid), (TAny*)&temp, sizeof(TUid));
  1044         aApplications.AppendL(temp);
  1044         aApplications.Append(temp);
  1045         }
  1045         }
  1046 	CleanupStack::PopAndDestroy(1);  // applList
  1046 	CleanupStack::PopAndDestroy(1);  // applList
  1047     CleanupStack::PopAndDestroy(); //certDesc
  1047     CleanupStack::PopAndDestroy(); //certDesc
  1048 }
  1048 }
  1049 
  1049