[asterisk-commits] tilghman: branch 1.6.1 r170178 - in /branches/1.6.1: ./ pbx/pbx_config.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jan 22 11:21:39 CST 2009


Author: tilghman
Date: Thu Jan 22 11:21:39 2009
New Revision: 170178

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=170178
Log:
Merged revisions 170165 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r170165 | tilghman | 2009-01-22 11:19:28 -0600 (Thu, 22 Jan 2009) | 13 lines
  
  Merged revisions 170158 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r170158 | tilghman | 2009-01-22 11:18:07 -0600 (Thu, 22 Jan 2009) | 6 lines
    
    Allow global variables after substitution to be as long as other variables.
    (closes issue #14263)
     Reported by: markd
     Patches: 
           20090120__bug14263.diff.txt uploaded by Corydon76 (license 14)
  ........
................

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/pbx/pbx_config.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/pbx/pbx_config.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/pbx/pbx_config.c?view=diff&rev=170178&r1=170177&r2=170178
==============================================================================
--- branches/1.6.1/pbx/pbx_config.c (original)
+++ branches/1.6.1/pbx/pbx_config.c Thu Jan 22 11:21:39 2009
@@ -1408,7 +1408,11 @@
 	struct ast_config *cfg;
 	char *end;
 	char *label;
+#ifdef LOW_MEMORY
 	char realvalue[256];
+#else
+	char realvalue[8192];
+#endif
 	int lastpri = -2;
 	struct ast_context *con;
 	struct ast_variable *v;




More information about the asterisk-commits mailing list