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

Fixed minor bug in pool_caching.c that prevent pool from being reused if the capacity has changed when the pool is released

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/string.h

    r514 r581  
    544544PJ_DECL(int) pj_utoa_pad( unsigned long val, char *buf, int min_dig, int pad); 
    545545 
     546 
     547/** 
     548 * Fill the memory location with zero. 
     549 * 
     550 * @param dst       The destination buffer. 
     551 * @param size      The number of bytes. 
     552 */ 
     553PJ_INLINE(void) pj_bzero(void *dst, pj_size_t size) 
     554{ 
     555    bzero(dst, size); 
     556} 
     557 
     558 
    546559/** 
    547560 * Fill the memory location with value. 
Note: See TracChangeset for help on using the changeset viewer.