Changeset 3262
- Timestamp:
- Aug 11, 2010 6:03:47 AM (14 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib-util/src/pjlib-util-test/http_client.c
r3257 r3262 66 66 struct server_t *srv = (struct server_t*)p; 67 67 char *pkt = (char*)pj_pool_alloc(pool, srv->buf_size); 68 pj_sock_t newsock ;68 pj_sock_t newsock = PJ_INVALID_SOCKET; 69 69 70 70 while (!thread_quit) { -
pjproject/trunk/pjmedia/src/pjmedia-audiodev/audiodev.c
r3174 r3262 453 453 for (j = drv->start_idx; j < drv->start_idx + drv->dev_cnt; j++) 454 454 { 455 aud_subsys.dev_list[j] = PJMEDIA_AUD_INVALID_DEV;455 aud_subsys.dev_list[j] = (pj_uint32_t)PJMEDIA_AUD_INVALID_DEV; 456 456 } 457 457 -
pjproject/trunk/pjnath/src/pjnath/ice_strans.c
r3212 r3262 269 269 * move it temporarily to something else. 270 270 */ 271 if ( comp->default_cand == cand - comp->cand_list) {271 if ((int)comp->default_cand == cand - comp->cand_list) { 272 272 /* Init to something */ 273 273 comp->default_cand = 0; -
pjproject/trunk/pjsip-apps/src/pjsystest/main_wm.c
r2836 r3262 238 238 if (!RegisterClass(&wc) != 0) { 239 239 DWORD err = GetLastError(); 240 return -1;240 return PJ_RETURN_OS_ERROR(err); 241 241 } 242 242 -
pjproject/trunk/pjsip/src/pjsip/sip_transaction.c
r3203 r3262 1862 1862 const pjsip_transport_state_info *info) 1863 1863 { 1864 PJ_UNUSED_ARG(tp); 1865 1864 1866 if (state == PJSIP_TP_STATE_DISCONNECTED) { 1865 1867 pjsip_transaction *tsx;
Note: See TracChangeset
for help on using the changeset viewer.