Changeset 1242 for pjproject/trunk/pjsip/src/pjsip-ua/sip_inv.c
- Timestamp:
- May 2, 2007 11:29:37 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-ua/sip_inv.c
r982 r1242 170 170 { 171 171 if (cause_code > inv->cause) { 172 inv->cause = cause_code;172 inv->cause = (pjsip_status_code) cause_code; 173 173 if (cause_text) 174 174 pj_strdup(inv->pool, &inv->cause_text, cause_text); … … 462 462 inv->options = options; 463 463 inv->notify = PJ_TRUE; 464 inv->cause = 0;464 inv->cause = (pjsip_status_code) 0; 465 465 466 466 /* Object name will use the same dialog pointer. */ … … 884 884 inv->options = options; 885 885 inv->notify = PJ_TRUE; 886 inv->cause = 0;886 inv->cause = (pjsip_status_code) 0; 887 887 888 888 /* Object name will use the same dialog pointer. */
Note: See TracChangeset
for help on using the changeset viewer.