[svn-commits] russell: branch 1.4 r64756 - /branches/1.4/apps/app_dial.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu May 17 09:47:29 MST 2007


Author: russell
Date: Thu May 17 11:47:29 2007
New Revision: 64756

URL: http://svn.digium.com/view/asterisk?view=rev&rev=64756
Log:
Increase the size of a buffer to support longer dial strings for channels.
(issue #9291, reported and fix suggested by meni)

Modified:
    branches/1.4/apps/app_dial.c

Modified: branches/1.4/apps/app_dial.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_dial.c?view=diff&rev=64756&r1=64755&r2=64756
==============================================================================
--- branches/1.4/apps/app_dial.c (original)
+++ branches/1.4/apps/app_dial.c Thu May 17 11:47:29 2007
@@ -786,7 +786,7 @@
 	int numcongestion = 0;
 	int numnochan = 0;
 	int cause;
-	char numsubst[AST_MAX_EXTENSION];
+	char numsubst[256];
 	char cidname[AST_MAX_EXTENSION];
 	int privdb_val = 0;
 	unsigned int calldurationlimit = 0;



More information about the svn-commits mailing list