Changeset 1671
- Timestamp:
- Jan 8, 2008 11:41:22 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r1655 r1671 1879 1879 if (PJ_TIME_VAL_MSEC(media_duration) == 0) 1880 1880 media_duration.msec = 1; 1881 1882 /* protect against division by zero */ 1883 if (stat.rx.pkt == 0) 1884 stat.rx.pkt = 1; 1885 if (stat.tx.pkt == 0) 1886 stat.tx.pkt = 1; 1881 1887 1882 1888 len = pj_ansi_snprintf(p, end-p,
Note: See TracChangeset
for help on using the changeset viewer.