diff options
author | uht <uht@yandex-team.ru> | 2022-02-10 16:49:56 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:56 +0300 |
commit | 1191d1e479d83a18a813a5107573ce22a2f0bbb4 (patch) | |
tree | 6cbbb7e1c6309393dde43830532c7c7b633b1e4b /library/cpp/string_utils/quote/quote.cpp | |
parent | fa977fb6c7b468a86cf33f948fdae8e0c83d3cad (diff) | |
download | ydb-1191d1e479d83a18a813a5107573ce22a2f0bbb4.tar.gz |
Restoring authorship annotation for <uht@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/string_utils/quote/quote.cpp')
-rw-r--r-- | library/cpp/string_utils/quote/quote.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/string_utils/quote/quote.cpp b/library/cpp/string_utils/quote/quote.cpp index e523350b80..c0a4b64c61 100644 --- a/library/cpp/string_utils/quote/quote.cpp +++ b/library/cpp/string_utils/quote/quote.cpp @@ -29,7 +29,7 @@ namespace { if (!IsAsciiHex((ui8)x[0]) || !IsAsciiHex((ui8)x[1])) return '%'; ui8 c = 0; - + GETXC; GETXC; return c; @@ -160,7 +160,7 @@ void CGIEscape(TString& url) { char* to = tempBuf.Data(); url.AssignNoAlias(to, CGIEscape(to, url.data(), url.size())); -} +} TString CGIEscapeRet(const TStringBuf url) { TString to; @@ -233,7 +233,7 @@ void CGIUnescape(TString& url) { } else { url = CGIUnescapeRet(url); } -} +} TString CGIUnescapeRet(const TStringBuf from) { TString to; |