upnpavcontrolpoint/avcpengine/src/upnpavcpenginesession.cpp
changeset 32 3785f754ee62
parent 0 7f85d04be362
equal deleted inserted replaced
27:03808033c9a2 32:3785f754ee62
    96         // all else commands
    96         // all else commands
    97         default:
    97         default:
    98             CUpnpCommand* command = CUpnpCommand::NewL(iAVCPManager, *this, aMessage);            
    98             CUpnpCommand* command = CUpnpCommand::NewL(iAVCPManager, *this, aMessage);            
    99             if (command) 
    99             if (command) 
   100             {            	
   100             {            	
   101                 iCommandList.Append(command);
   101                 iCommandList.AppendL(command);
   102                 CleanupStack::PushL(command);
   102                 CleanupStack::PushL(command);
   103                 command->ExecuteL();
   103                 command->ExecuteL();
   104                 CleanupStack::Pop(command); // it will be destroyed after completion
   104                 CleanupStack::Pop(command); // it will be destroyed after completion
   105             }
   105             }
   106             else 
   106             else