dect
/
asterisk
Archived
13
0
Fork 0

Reset the ast_str used for escape substitution. We need to do this since it is a thread local variable that may contain the value of a previous substitution.

(closes issue #14312)
Reported by: pj


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@170498 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2009-01-23 17:32:26 +00:00
parent 60f064a0f2
commit 33f2a2742e
1 changed files with 2 additions and 0 deletions

View File

@ -10191,6 +10191,8 @@ static const char *substitute_escapes(const char *value)
/* Add 16 for fudge factor */
struct ast_str *str = ast_str_thread_get(&global_app_buf, strlen(value) + 16);
ast_str_reset(str);
/* Substitute strings \r, \n, and \t into the appropriate characters */
for (current = (char *) value; *current; current++) {
if (*current == '\\') {