Changeset 4298 for pjproject/trunk/pjlib/include/pj/pool_i.h
- Timestamp:
- Nov 22, 2012 5:00:01 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/pool_i.h
r3553 r4298 48 48 size = (size + PJ_POOL_ALIGNMENT) & ~(PJ_POOL_ALIGNMENT-1); 49 49 } 50 if (( unsigned)(block->end - block->cur) >= size) {50 if ((pj_size_t)(block->end - block->cur) >= size) { 51 51 void *ptr = block->cur; 52 52 block->cur += size;
Note: See TracChangeset
for help on using the changeset viewer.