git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7306 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-01-20 19:05:16 +00:00
parent 72fb6b2cdf
commit fa56de9d14
1 changed files with 2 additions and 1 deletions

View File

@ -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;