diff options
author | svshevtsov <svshevtsov@yandex-team.ru> | 2022-02-10 16:49:37 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:37 +0300 |
commit | de89752358147d7b25ef59a85b431bb564068a49 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/uri/assign.cpp | |
parent | 657337012a264721d58c470b4e9e796611f3c492 (diff) | |
download | ydb-de89752358147d7b25ef59a85b431bb564068a49.tar.gz |
Restoring authorship annotation for <svshevtsov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/uri/assign.cpp')
-rw-r--r-- | library/cpp/uri/assign.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/uri/assign.cpp b/library/cpp/uri/assign.cpp index 71e17988c9..ae9125c727 100644 --- a/library/cpp/uri/assign.cpp +++ b/library/cpp/uri/assign.cpp @@ -235,9 +235,9 @@ namespace NUri { // now set all fields prior to validating - Alloc(buflen); + Alloc(buflen); - TMemoryWriteBuffer out(Buffer.data(), Buffer.size()); + TMemoryWriteBuffer out(Buffer.data(), Buffer.size()); for (int idx = 0; idx < FieldUrlMAX; ++idx) { const EField fld = EField(idx); @@ -310,8 +310,8 @@ namespace NUri { if (checkChars != allowChars) ret = ParsedBadFormat; } - - out << '\0'; + + out << '\0'; } if (hostConverted) { @@ -323,7 +323,7 @@ namespace NUri { out << '\0'; } - Buffer.Resize(out.Len()); + Buffer.Resize(out.Len()); if (GetScheme() == SchemeEmpty && SchemeEmpty != defscheme) { if (SchemeUnknown == defscheme) |