FSCORE-370

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13414 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-05-21 20:10:24 +00:00
parent 9bc4c10b5c
commit d875d23de5
2 changed files with 2 additions and 2 deletions

View File

@ -1985,12 +1985,12 @@ SWITCH_DECLARE(char *) switch_channel_expand_variables(switch_channel_t *channel
if (*p == '\\') {
if (*(p + 1) == '$') {
nv = 1;
p++;
} else if (*(p + 1) == '\\') {
*c++ = *p++;
len++;
continue;
}
p++;
}
if (*p == '$' && !nv) {

View File

@ -1353,12 +1353,12 @@ SWITCH_DECLARE(char *) switch_event_expand_headers(switch_event_t *event, const
if (*p == '\\') {
if (*(p + 1) == '$') {
nv = 1;
p++;
} else if (*(p + 1) == '\\') {
*c++ = *p++;
len++;
continue;
}
p++;
}
if (*p == '$' && !nv) {