summaryrefslogtreecommitdiff
path: root/pjlib
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-08-15 20:25:42 +0000
committerBenny Prijono <bennylp@teluu.com>2006-08-15 20:25:42 +0000
commitab77e4d8b4ddc20d6018d67c739e3317e4746c49 (patch)
treeadacd49937775081604074361e359aa354155d2c /pjlib
parent2b4ce727a94196b76c3d2e6bf3f43c201207b82c (diff)
Fixed yet another bug for 64bit target: error in initializing caching pool because internal pool size is too small. Increased by 256 bytes.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@684 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib')
-rw-r--r--pjlib/src/pj/pool_caching.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/src/pj/pool_caching.c b/pjlib/src/pj/pool_caching.c
index 192bf380..d90e167f 100644
--- a/pjlib/src/pj/pool_caching.c
+++ b/pjlib/src/pj/pool_caching.c
@@ -69,7 +69,7 @@ PJ_DEF(void) pj_caching_pool_init( pj_caching_pool *cp,
cp->factory.on_block_alloc = &cpool_on_block_alloc;
cp->factory.on_block_free = &cpool_on_block_free;
- cp->pool = pj_pool_create_int(&cp->factory, "cachingpool", 256,
+ cp->pool = pj_pool_create_int(&cp->factory, "cachingpool", 512,
0, NULL);
i = pj_mutex_create_simple(cp->pool, "cachingpool", &cp->mutex);
}