fix bad parsing of objects array for double backslashes

This commit is contained in:
Matt Wells
2014-06-19 13:30:57 -07:00
parent a4e2ed8faf
commit 149e88efc8

@ -13737,6 +13737,12 @@ SafeBuf *XmlDoc::getTokenizedDiffbotReply ( ) {
bool inQuotes = false;
// scan now
for ( ; *x ; x++ ) {
// escaping a backslash?
if ( *x == '\\' && x[1] == '\\' ) {
// skip two bytes then..
x++;
continue;
}
// escaping a quote? ignore quote then.
if ( *x == '\\' && x[1] == '\"' ) {
// skip two bytes then..