Ignore:
Timestamp:
Apr 30, 2007 9:03:32 PM (17 years ago)
Author:
bennylp
Message:

Initial Symbian integration to trunk for pjlib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/lock.c

    r974 r1235  
    6565    PJ_ASSERT_RETURN(pool && lock, PJ_EINVAL); 
    6666 
    67     p_lock = pj_pool_alloc(pool, sizeof(pj_lock_t)); 
     67    p_lock = PJ_POOL_ALLOC_T(pool, pj_lock_t); 
    6868    if (!p_lock) 
    6969        return PJ_ENOMEM; 
     
    153153    PJ_ASSERT_RETURN(pool && lock, PJ_EINVAL); 
    154154 
    155     p_lock = pj_pool_alloc(pool, sizeof(pj_lock_t)); 
     155    p_lock = PJ_POOL_ALLOC_T(pool, pj_lock_t); 
    156156    if (!p_lock) 
    157157        return PJ_ENOMEM; 
Note: See TracChangeset for help on using the changeset viewer.