aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 15:04:14 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 15:04:14 +0000
commit9665c79f8ba96c5fe2fe6207e4752ce5bf4eb3ba (patch)
treeae330a1c0c079a992ee765c750837bc3c683be76 /apps
parent82092641dad4098e93f70b5d5798b687d43a9251 (diff)
Ensure that frames are fully initialized. This will probably fix getting
weird timestamp log messages in logs when using the Festival app. (issue #9781, patch by me) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@65853 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_festival.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/app_festival.c b/apps/app_festival.c
index 126dde29d..2aceceefd 100644
--- a/apps/app_festival.c
+++ b/apps/app_festival.c
@@ -178,7 +178,9 @@ static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
struct ast_frame f;
char offset[AST_FRIENDLY_OFFSET];
char frdata[2048];
- } myf;
+ } myf = {
+ .f = { 0, },
+ };
if (pipe(fds)) {
ast_log(LOG_WARNING, "Unable to create pipe\n");
@@ -238,7 +240,6 @@ static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
myf.f.subclass = AST_FORMAT_SLINEAR;
myf.f.datalen = res;
myf.f.samples = res / 2;
- myf.f.mallocd = 0;
myf.f.offset = AST_FRIENDLY_OFFSET;
myf.f.src = __PRETTY_FUNCTION__;
myf.f.data = myf.frdata;