Ignore:
Timestamp:
Oct 29, 2006 6:13:13 PM (17 years ago)
Author:
bennylp
Message:

Another Symbian commit, ported all PJSIP libraries and sipstateless runs without crashes (still no SIP message though)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/symbian/pjsip/src/pjsip/sip_util_statefull.c

    r448 r789  
    6060        return; 
    6161 
    62     tsx_data = tsx->mod_data[mod_stateful_util.id]; 
     62    tsx_data = (struct tsx_data *) tsx->mod_data[mod_stateful_util.id]; 
    6363    if (tsx_data == NULL) 
    6464        return; 
     
    100100    } 
    101101 
    102     tsx_data = pj_pool_alloc(tsx->pool, sizeof(struct tsx_data)); 
     102    tsx_data = (struct tsx_data *)  
     103               pj_pool_alloc(tsx->pool, sizeof(struct tsx_data)); 
    103104    tsx_data->token = token; 
    104105    tsx_data->cb = cb; 
     
    142143        const pjsip_hdr *hdr = hdr_list->next; 
    143144        while (hdr != hdr_list) { 
    144             pjsip_msg_add_hdr( tdata->msg, pjsip_hdr_clone(tdata->pool, hdr) ); 
     145            pjsip_msg_add_hdr( tdata->msg, (pjsip_hdr*)pjsip_hdr_clone(tdata->pool, hdr) ); 
    145146            hdr = hdr->next; 
    146147        } 
Note: See TracChangeset for help on using the changeset viewer.