Ignore:
Timestamp:
Sep 24, 2007 9:16:48 PM (17 years ago)
Author:
bennylp
Message:

Fixed several unit test failures: typecast error on C++ mode, SIP parsing, etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-ua/sip_reg.c

    r1431 r1451  
    201201 
    202202        pj_strdup_with_null(regc->pool, &tmp, &contact[i]); 
    203         hdr = pjsip_parse_hdr(regc->pool, &CONTACT, tmp.ptr, tmp.slen, NULL); 
     203        hdr = (pjsip_hdr*) 
     204              pjsip_parse_hdr(regc->pool, &CONTACT, tmp.ptr, tmp.slen, NULL); 
    204205        if (hdr == NULL) { 
    205206            PJ_LOG(4,(THIS_FILE, "Invalid Contact URI: \"%.*s\"",  
Note: See TracChangeset for help on using the changeset viewer.