mirror of
https://github.com/celisej567/source-sdk-2013.git
synced 2026-09-11 20:11:33 +03:00
Fixed response system support for escaped quotes causing backslashes to stop working
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user