From becc9777cfb676d2f3912835238b4c1118606fd1 Mon Sep 17 00:00:00 2001 From: markster Date: Wed, 3 Aug 2005 02:26:19 +0000 Subject: Fix AEL max character bug (bug #4837) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6259 f38db490-d61c-443f-a65b-d21fe96a405b --- pbx/pbx_ael.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pbx/pbx_ael.c') diff --git a/pbx/pbx_ael.c b/pbx/pbx_ael.c index eedc89369..585b1e7b5 100755 --- a/pbx/pbx_ael.c +++ b/pbx/pbx_ael.c @@ -1149,7 +1149,7 @@ static int ast_ael_compile(struct ast_context **local_contexts, const char *file buf[0] = 0; bufsiz = 4096; while(!feof(f)) { - if (strlen(buf) - bufsiz < 2048) { + if (bufsiz - strlen(buf) < 2048) { bufsiz += 4096; tbuf = realloc(buf, bufsiz); if (tbuf) { -- cgit v1.2.3