update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7306 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
72fb6b2cdf
commit
fa56de9d14
|
@ -1056,7 +1056,8 @@ static char *cleanup_separated_string(char *str)
|
|||
int esc = 0;
|
||||
|
||||
if (*ptr == ESCAPE_META) {
|
||||
if ((e = unescape_char(*(ptr+1))) != e) {
|
||||
e = *(ptr+1);
|
||||
if (e == '\'' || e == '"' || (e = unescape_char(*(ptr+1))) != *(ptr+1)) {
|
||||
++ptr;
|
||||
*dest++ = e;
|
||||
end = dest;
|
||||
|
|
Loading…
Reference in New Issue