summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-04-13 18:09:29 +0000
committerJoshua Colp <jcolp@digium.com>2007-04-13 18:09:29 +0000
commit67302c54116cecdd26b48c2ef3dd51d378afb2be (patch)
tree8971d73bb3d88d574a88f2fb53a64209b7034b41 /apps
parent4f04ff85971f1ca4e069d30e95ea6309bcef6d30 (diff)
Merged revisions 61651 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r61651 | file | 2007-04-13 14:08:02 -0400 (Fri, 13 Apr 2007) | 2 lines Do not bother looking for a result if none are present. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@61652 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_speech_utils.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/app_speech_utils.c b/apps/app_speech_utils.c
index 4517bbb3b..100b174d9 100644
--- a/apps/app_speech_utils.c
+++ b/apps/app_speech_utils.c
@@ -133,6 +133,9 @@ static struct ast_speech_result *find_result(struct ast_speech_result *results,
char *tmp = NULL;
int nbest_num = 0, wanted_num = 0, i = 0;
+ if (!result)
+ return NULL;
+
if ((tmp = strchr(result_num, '/'))) {
*tmp++ = '\0';
nbest_num = atoi(result_num);