Convert uses of strdup() to ast_strdup()

(issue #9983, eliel)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@69436 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2007-06-14 23:01:01 +00:00
parent 5dd9887ac7
commit b179e2155f
19 changed files with 62 additions and 62 deletions

View File

@@ -515,7 +515,7 @@ static int speech_processing_sound(struct ast_channel *chan, void *data)
speech->processing_sound = NULL;
}
speech->processing_sound = strdup(data);
speech->processing_sound = ast_strdup(data);
ast_module_user_remove(u);
@@ -747,8 +747,8 @@ static int speech_background(struct ast_channel *chan, void *data)
speech->results = ast_calloc(1, sizeof(*speech->results));
if (speech->results != NULL) {
speech->results->score = 1000;
speech->results->text = strdup(dtmf);
speech->results->grammar = strdup("dtmf");
speech->results->text = ast_strdup(dtmf);
speech->results->grammar = ast_strdup("dtmf");
}
}