Ignore:
Timestamp:
Jan 18, 2006 11:12:57 PM (18 years ago)
Author:
bennylp
Message:

Compiled cleanly first time for the new pjlib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/jbuf.c

    • Property svn:keywords set to Id
    r65 r121  
    2020#include <pj/log.h> 
    2121#include <pj/pool.h> 
    22 #include <string.h>     /* memset() */ 
     22#include <pj/assert.h> 
     23#include <pj/string.h> 
     24 
    2325 
    2426/* 
     
    6870    PJ_LOG(5, (THIS_FILE, "..pj_frame_list_init [lst=%p], maxcount=%d", lst, maxcount)); 
    6971 
    70     memset(lst, 0, sizeof(*lst)); 
     72    pj_memset(lst, 0, sizeof(*lst)); 
    7173    lst->maxcount = maxcount; 
    7274    lst->frames = pj_pool_calloc( pool, maxcount, sizeof(*lst->frames) ); 
Note: See TracChangeset for help on using the changeset viewer.