omadrm/drmengine/server/src/DRMRightsClient.cpp
changeset 49 69d8e75812b7
parent 23 493788a4a8a4
equal deleted inserted replaced
48:c68061d56109 49:69d8e75812b7
   839         while (offset < size)
   839         while (offset < size)
   840             {
   840             {
   841             Mem::Copy( &roSize, ptr.Ptr()+offset, sizeof(TInt) );
   841             Mem::Copy( &roSize, ptr.Ptr()+offset, sizeof(TInt) );
   842             offset += sizeof (TInt);
   842             offset += sizeof (TInt);
   843             ro = ptr.Mid(offset, roSize).AllocL();
   843             ro = ptr.Mid(offset, roSize).AllocL();
   844             aRoList.Append(ro);
   844             CleanupStack::PushL( ro );
       
   845             aRoList.AppendL (ro);
       
   846             CleanupStack::Pop( ro );
   845             offset += roSize;
   847             offset += roSize;
   846             }
   848             }
   847         CleanupStack::PopAndDestroy();
   849         CleanupStack::PopAndDestroy();
   848         }
   850         }
   849     };
   851     };