mmserv/tms/tmsimpl/src/tmsstreambodyimpl.cpp
branchRCL_3
changeset 12 2eb3b066cc7d
parent 9 f5c5c82a163e
child 17 60e492b28869
equal deleted inserted replaced
11:3570217d8c21 12:2eb3b066cc7d
    75 
    75 
    76 gint TMSStreamBodyImpl::Create(TMSCallType callType, TMSStreamType stype,
    76 gint TMSStreamBodyImpl::Create(TMSCallType callType, TMSStreamType stype,
    77         TMSCallProxy* proxy, TMSStream& parent, TMSStreamBody*& bodyimpl)
    77         TMSCallProxy* proxy, TMSStream& parent, TMSStreamBody*& bodyimpl)
    78     {
    78     {
    79     gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    79     gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    80     TMSStreamBodyImpl* self = new TMSStreamBodyImpl;
    80     TMSStreamBodyImpl* self = new TMSStreamBodyImpl();
    81     if (self)
    81     if (self)
    82         {
    82         {
    83         ret = self->PostConstruct(callType, stype, proxy, parent);
    83         ret = self->PostConstruct(callType, stype, proxy, parent);
    84         if (ret != TMS_RESULT_SUCCESS)
    84         if (ret != TMS_RESULT_SUCCESS)
    85             {
    85             {