Fix unicode escaping bug

This commit is contained in:
Richard Feldman 2019-09-02 22:21:42 -04:00
parent 75482345a8
commit 271d13d747

View file

@ -594,6 +594,10 @@ fn handle_escaped_unicode<'a, 'p, I>(
);
}
}
// We are now done processing the unicode portion of the string,
// so exit the loop without further advancing the iterator.
return;
} else {
hex_str.push(hex_char)
}