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/pjlib-util/src/pjlib-util-test/xml.c

    r65 r582  
    111111    } 
    112112 
    113     output = (char*)pj_pool_alloc(pool, msg.slen + 512); 
    114     pj_memset(output, 0, msg.slen+512); 
     113    output = (char*)pj_pool_zalloc(pool, msg.slen + 512); 
    115114    output_len = pj_xml_print(root, output, msg.slen+512, PJ_TRUE); 
    116115    if (output_len < 1) { 
Note: See TracChangeset for help on using the changeset viewer.