From: Malcolm Davenport Date: Wed, 24 Mar 2004 22:50:43 +0000 (+0000) Subject: Bug # 1287: Festival cache string bug fixed X-Git-Tag: 1.0.0-rc1~848 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ec7218ffb332cecc5bc062d7135822dca34a904;p=thirdparty%2Fasterisk.git Bug # 1287: Festival cache string bug fixed git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2555 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_festival.c b/apps/app_festival.c index 0e016e3d11..337de43b61 100755 --- a/apps/app_festival.c +++ b/apps/app_festival.c @@ -376,7 +376,8 @@ static int festival_exec(struct ast_channel *chan, void *vdata) if (strlen((char *)data)==strln) { ast_log(LOG_DEBUG,"Size OK\n"); read(fdesc,&bigstring,strln); - if (strcmp(bigstring,data)==0) { + bigstring[strln] = 0; + if (strcmp(bigstring,data)==0) { readcache=1; } else { ast_log(LOG_WARNING,"Strings do not match\n");