Use the linkedlists.h AST_LIST_NEXT macro for modifying the list of results.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@74616 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2007-07-11 17:34:30 +00:00
parent 2d3f9ce25b
commit 7e015109a2
3 changed files with 4 additions and 7 deletions

View File

@@ -150,7 +150,7 @@ static struct ast_speech_result *find_result(struct ast_speech_result *results,
if (i == wanted_num)
break;
i++;
} while ((result = result->next));
} while ((result = AST_LIST_NEXT(result, list)));
return result;
}
@@ -315,11 +315,8 @@ static int speech_read(struct ast_channel *chan, const char *cmd, char *data,
ast_copy_string(buf, "0", len);
} else if (!strcasecmp(data, "results")) {
/* Count number of results */
result = speech->results;
while (result) {
for (result = speech->results; result; result = AST_LIST_NEXT(result, list))
results++;
result = result->next;
}
snprintf(tmp, sizeof(tmp), "%d", results);
ast_copy_string(buf, tmp, len);
}