]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
use individual pools instead of sub-pools for nua handles to avoid pool swell
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 11 Jul 2011 22:39:41 +0000 (17:39 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Tue, 12 Jul 2011 02:27:36 +0000 (21:27 -0500)
libs/sofia-sip/.update
libs/sofia-sip/libsofia-sip-ua/nua/nua_common.c

index 83502caf5fecfd6f164505626388b794b3b08853..9544ad8244d3eedbc8b92fb3865ac41f942c1caf 100644 (file)
@@ -1 +1 @@
-Wed Jul  6 15:11:41 CDT 2011
+Mon Jul 11 17:37:21 CDT 2011
index ee74b433bf2cc671af02d0951936e2d8c215cc46..48988259b0691f7f7fa55e29e2c1181a69f47e81 100644 (file)
@@ -109,7 +109,8 @@ nua_handle_t *nh_create_handle(nua_t *nua,
 
   assert(nua->nua_home);
 
-  if ((nh = su_home_clone(nua->nua_home, sizeof(*nh)))) {
+  //if ((nh = su_home_clone(nua->nua_home, sizeof(*nh)))) {
+  if ((nh = su_home_clone(NULL, sizeof(*nh)))) {
     nh->nh_valid = nua_valid_handle_cookie;
     nh->nh_nua = nua;
     nh->nh_magic = hmagic;