diff options
| author | pkalinnikov <[email protected]> | 2022-02-10 16:50:15 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:15 +0300 |
| commit | 9e33e026829d561d6fd46d72b88c367952e08075 (patch) | |
| tree | 2af190fca83ac522e9a7e29de1daae32582064b4 /util/string/hex.cpp | |
| parent | ba5325cc01aabb81effc91ff1bdbb461313cbd00 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/string/hex.cpp')
| -rw-r--r-- | util/string/hex.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/string/hex.cpp b/util/string/hex.cpp index 667397987fc..75aa031639b 100644 --- a/util/string/hex.cpp +++ b/util/string/hex.cpp @@ -56,8 +56,8 @@ TString HexEncode(const void* in, size_t len) { TString HexDecode(const void* in, size_t len) { TString ret; - ret.ReserveAndResize(len >> 1); - HexDecode(in, len, ret.begin()); + ret.ReserveAndResize(len >> 1); + HexDecode(in, len, ret.begin()); return ret; } |
