summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsua-lib/pjsua_call.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-01-02 08:27:03 +0000
committerBenny Prijono <bennylp@teluu.com>2008-01-02 08:27:03 +0000
commit0fad3d64d2fe2fe4e187ef752ec4dc888aea2617 (patch)
tree6c50e10d0b5f16208c625504fc55ec874a6941ea /pjsip/src/pjsua-lib/pjsua_call.c
parent7224fb899a0bdfb47773329a227f4bca452b2748 (diff)
Related to ticket #437: optimize the stack usage of pjsua-lib
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1655 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src/pjsua-lib/pjsua_call.c')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_call.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_call.c b/pjsip/src/pjsua-lib/pjsua_call.c
index 7359faa3..eaa1f41c 100644
--- a/pjsip/src/pjsua-lib/pjsua_call.c
+++ b/pjsip/src/pjsua-lib/pjsua_call.c
@@ -1500,7 +1500,7 @@ PJ_DEF(pj_status_t) pjsua_call_xfer_replaces( pjsua_call_id call_id,
{
pjsua_call *dest_call;
pjsip_dialog *dest_dlg;
- char str_dest_buf[512];
+ char str_dest_buf[PJSIP_MAX_URL_SIZE*2];
pj_str_t str_dest;
int len;
pjsip_uri *uri;