mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2024-12-25 22:35: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;
|
||||
return data;
|
||||
}
|
||||
else if (c != '\"' && escaped)
|
||||
{
|
||||
// Not an escape character, just a back slash
|
||||
token[len] = '\\';
|
||||
len++;
|
||||
}
|
||||
|
||||
escaped = (c == '\\');
|
||||
if (!escaped)
|
||||
|
Loading…
Reference in New Issue
Block a user