automerge commit

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@68367 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Automerge Script 19 years ago
parent 3fb70a640c
commit 1f30a0a0f2

@ -62,7 +62,7 @@ int ast_say_character_str_full(struct ast_channel *chan, const char *str, const
int num = 0;
int res = 0;
while (str[num]) {
while (str[num] && !res) {
fn = NULL;
switch (str[num]) {
case ('*'):
@ -142,7 +142,7 @@ int ast_say_phonetic_str_full(struct ast_channel *chan, const char *str, const c
int num = 0;
int res = 0;
while (str[num]) {
while (str[num] && !res) {
fn = NULL;
switch (str[num]) {
case ('*'):

Loading…
Cancel
Save