Ignore:
Timestamp:
Jul 3, 2006 3:19:31 PM (18 years ago)
Author:
bennylp
Message:

Change all pj_memset to pj_bzero(), where applicable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_acc.c

    r563 r582  
    549549    PJ_ASSERT_RETURN(info != NULL, PJ_EINVAL); 
    550550     
    551     pj_memset(info, 0, sizeof(pjsua_acc_info)); 
     551    pj_bzero(info, sizeof(pjsua_acc_info)); 
    552552 
    553553    PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),  
Note: See TracChangeset for help on using the changeset viewer.