Removed stripping of \" in mxml_decode.

This commit is contained in:
2005-10-10 06:53:16 +00:00
parent cc52e6327f
commit dbbbec4d07
-5
View File
@@ -270,11 +270,6 @@ void mxml_decode(char *str)
strcpy(p, p+5);
}
}
if (str[0] == '\"' && str[strlen(str)-1] == '\"') {
strcpy(str, str+1);
str[strlen(str)-1] = 0;
}
}
/*------------------------------------------------------------------*/