You've already forked linux-packaging-mono
Imported Upstream version 4.4.0.122
Former-commit-id: a99f46acaeba3ab496c7afc02c29b839e30a0d0b
This commit is contained in:
@ -313,6 +313,20 @@ namespace System.Net.Http.Headers
|
||||
start = pos - 1;
|
||||
while (pos < s.Length) {
|
||||
ch = s [pos++];
|
||||
|
||||
//
|
||||
// The backslash character ("\") MAY be used as a single-character
|
||||
// quoting mechanism only within quoted-string
|
||||
//
|
||||
if (ch == '\\') {
|
||||
if (pos + 1 < s.Length) {
|
||||
++pos;
|
||||
continue;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
if (ch == '"') {
|
||||
ttype = Token.Type.QuotedString;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user