[asterisk-commits] file: branch 1.4 r81406 - /branches/1.4/res/res_speech.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Aug 31 10:53:17 CDT 2007


Author: file
Date: Fri Aug 31 10:53:16 2007
New Revision: 81406

URL: http://svn.digium.com/view/asterisk?view=rev&rev=81406
Log:
Make it the engine's responsible to check for the presence of results.

Modified:
    branches/1.4/res/res_speech.c

Modified: branches/1.4/res/res_speech.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_speech.c?view=diff&rev=81406&r1=81405&r2=81406
==============================================================================
--- branches/1.4/res/res_speech.c (original)
+++ branches/1.4/res/res_speech.c Fri Aug 31 10:53:16 2007
@@ -120,7 +120,7 @@
 {
 	struct ast_speech_result *result = NULL;
 
-	if (speech->engine->get != NULL && ast_test_flag(speech, AST_SPEECH_HAVE_RESULTS)) {
+	if (speech->engine->get != NULL) {
 		result = speech->engine->get(speech);
 	}
 




More information about the asterisk-commits mailing list