Changeset 1235 for pjproject/trunk/pjlib/src/pj/lock.c
- Timestamp:
- Apr 30, 2007 9:03:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/lock.c
r974 r1235 65 65 PJ_ASSERT_RETURN(pool && lock, PJ_EINVAL); 66 66 67 p_lock = pj_pool_alloc(pool, sizeof(pj_lock_t));67 p_lock = PJ_POOL_ALLOC_T(pool, pj_lock_t); 68 68 if (!p_lock) 69 69 return PJ_ENOMEM; … … 153 153 PJ_ASSERT_RETURN(pool && lock, PJ_EINVAL); 154 154 155 p_lock = pj_pool_alloc(pool, sizeof(pj_lock_t));155 p_lock = PJ_POOL_ALLOC_T(pool, pj_lock_t); 156 156 if (!p_lock) 157 157 return PJ_ENOMEM;
Note: See TracChangeset
for help on using the changeset viewer.