mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2025-04-16 14:32:31 +03:00
Fixed response system support for escaped quotes causing backslashes to stop working
This commit is contained in:
parent
a9bd90f681
commit
197a9be59c
@ -188,6 +188,12 @@ skipwhite:
|
|||||||
token[len] = 0;
|
token[len] = 0;
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
else if (c != '\"' && escaped)
|
||||||
|
{
|
||||||
|
// Not an escape character, just a back slash
|
||||||
|
token[len] = '\\';
|
||||||
|
len++;
|
||||||
|
}
|
||||||
|
|
||||||
escaped = (c == '\\');
|
escaped = (c == '\\');
|
||||||
if (!escaped)
|
if (!escaped)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user